Application Development and Automation 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: 
Read only

search help query

Former Member
0 Likes
518

hi,

in the below program i am getting the f4 values for marc table all the fields.

but whenevre i am selecting the one field it is not displaying in the parameter block on my selection

screen.please tell me why???

parameters:marc like DD02L-TABNAME.

data : c20 like dd03l-fieldname.

data :key like DFIES-FIELDNAME.

data: p_marc like DFIES-FIELDNAME.

at selection-screen on value-request for marc.

CALL FUNCTION 'SD_F4_HELP_FELD'

EXPORTING

SEL_TABNAME = 'marc'

IMPORTING

FIELDNAME = p_marc.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
489

HI,

Check this

PARAMETERS:p_marc LIKE DD03L-FIELDNAME.


DATA : c20 LIKE dd03l-fieldname.
DATA :key LIKE dfies-fieldname.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_marc.

  CALL FUNCTION 'SD_F4_HELP_FELD'
    EXPORTING
      sel_tabname = 'marc'
    IMPORTING
      fieldname   = p_marc.

hi,

in the below program i am getting the f4 values for marc table all the fields.

but whenevre i am selecting the one field it is not displaying in the parameter block on my selection

screen.please tell me why???

parameters:marc like DD02L-TABNAME.

data : c20 like dd03l-fieldname.

data :key like DFIES-FIELDNAME.

data: p_marc like DFIES-FIELDNAME.

at selection-screen on value-request for marc.

CALL FUNCTION 'SD_F4_HELP_FELD'

EXPORTING

SEL_TABNAME = 'marc'

IMPORTING

FIELDNAME = p_marc.

3 REPLIES 3
Read only

Former Member
0 Likes
490

HI,

Check this

PARAMETERS:p_marc LIKE DD03L-FIELDNAME.


DATA : c20 LIKE dd03l-fieldname.
DATA :key LIKE dfies-fieldname.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_marc.

  CALL FUNCTION 'SD_F4_HELP_FELD'
    EXPORTING
      sel_tabname = 'marc'
    IMPORTING
      fieldname   = p_marc.

Read only

0 Likes
489

thanks

very much ,my probleam solved..

Read only

0 Likes
489

hi,

one more probleam comes ,i am not getting the fields from mara when putting F4.

when i am putting this coading in 3.1

parameters:p_marc like dd02l-tabname.

at selection-screen on value-request for p_marc.

data : c20 like dd03l-fieldname.

*DATA :key LIKE dfies-fieldname.

call function 'F4_DD_TABLE_FIELDS'

exporting

table = p_marc

object = '*'

suppress_selection = 'X'

  • DISPLAY_ONLY =

importing

result = c20

exceptions

others = 1.