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

Reg : F4IF_INT_TABLE_VALUE_REQUEST

Former Member
0 Likes
405

Hi Experts ,

Pls Give me an example how 2 use F4IF_INT_TABLE_VALUE_REQUEST ??

Regs,

Narayana Murthy

Hi Experts ,

Pls Give me an example how 2 use F4IF_INT_TABLE_VALUE_REQUEST ??

Regs,

Narayana Murthy

2 REPLIES 2
Read only

Former Member
0 Likes
378

hi,

PROCESS ON VALUE-REQUEST.

FIELD D0200_FIELD_TAB-BUFFER MODULE D0200_VALUE_REQU.

MODULE d0200_value_requ.

"call the FM here.

CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'

EXPORTING

tabname = tabname

fieldname = fname

  • SEARCHHELP = ' '

  • SHLPPARAM = ' '

  • dynpprog = progname

  • dynpnr = dynnr

  • dynprofield = ' '

  • stepl = dynp_stepl

value = value_bef_f4

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • SUPPRESS_RECORDLIST = ' '

callback_program = progname

callback_form = 'CALLBACK_F4'

TABLES

return_tab = return_tab

EXCEPTIONS

field_not_found = 1

no_help_for_field = 2

inconsistent_help = 3

no_values_found = 4

OTHERS = 5.

....

........

..........

ENDMODULE. "d0200_value_requ

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
378

Hi,

Check the below example

CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'

EXPORTING

tabname = tabname

fieldname = fname

  • SEARCHHELP = ' '

  • SHLPPARAM = ' '

  • dynpprog = progname

  • dynpnr = dynnr

  • dynprofield = ' '

  • stepl = dynp_stepl

value = value_bef_f4

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • SUPPRESS_RECORDLIST = ' '

callback_program = progname

callback_form = 'CALLBACK_F4'

TABLES

return_tab = return_tab

EXCEPTIONS

field_not_found = 1

no_help_for_field = 2

inconsistent_help = 3

no_values_found = 4

OTHERS = 5.

Regards,

Sesh