Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

'F4IF_INT_TABLE_VALUE_REQUEST'

Former Member
0 Kudos

Hi.

Other function similar to 'F4IF_INT_TABLE_VALUE_REQUEST' for to create a match code in a dynpro.

Thanks

2 REPLIES 2

Former Member
0 Kudos

Hi

Use the fun module

DYNP_VALUES_READ

DYNP_VALUE_READ

This function module is used to read values in the screen fields. Use of this

FM causes forced transfer of data from screen fields to ABAP fields.

There are 3 exporting parameters

DYNAME = program name = SY-CPROG

DYNUMB = Screen number = SY-DYNNR

TRANSLATE_TO_UPPER = 'X'

and one importing TABLE parameter

DYNPFIELDS = Table of TYPE DYNPREAD

The DYNPFIELDS parameter is used to pass internal table of type DYNPREAD

to this FM and the values read from the screen will be stored in this table.This

table consists of two fields:

FIELDNAME : Used to pass the name of screen field for which the value is to

be read.

FIELDVALUE : Used to read the value of the field in the screen.

Reward points for useful Answers

Regards

Anji

Simha_
Employee
Employee
0 Kudos

Hi,

U can try this also..

F4IF_FIELD_VALUE_REQUEST

Cheers,

SImha.