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

Problem with F4 Help

Former Member
0 Likes
438

Hi,

Thank You very much for reading this query.

I have developed a selection Screen on which one field is there.For that Field, by calling FM 'F4IF_INT_TABLE_VALUE_REQUEST', I have provided f4 help.If you take f4 help, I am displaying Business Transaction and Text for that transaction..If I select one of the records, Business Text is getting populated to the field instead of Business Transaction.

So can you please advise me on this, how to get Business Transaction.

Thanks adn Regards,

K.krishna Chaitanya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
405

Hi Krishna,

Check if you have passed the field business transaction in the internal table to the exporting parameter RETFIELD.

Sujay

2 REPLIES 2
Read only

Former Member
0 Likes
406

Hi Krishna,

Check if you have passed the field business transaction in the internal table to the exporting parameter RETFIELD.

Sujay

Read only

anesh_kumar
Active Participant
0 Likes
405

Hi

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

  • DDIC_STRUCTURE = ' '

RETFIELD = l_field ' PASS YOUR FIELD NAME HERE'

  • PVALKEY = ' '

DYNPPROG = l_program

DYNPNR = l_dynnr

DYNPROFIELD = l_screen

  • STEPL = 0

WINDOW_TITLE = zw_window_title

  • VALUE = '0005'

VALUE_ORG = 'S'

  • MULTIPLE_CHOICE = ' '

DISPLAY = wf4_display

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

TABLES

VALUE_TAB = lt_val

FIELD_TAB = lt_field_tab

  • RETURN_TAB = t_field_tab

DYNPFLD_MAPPING = lt_din_mapping

  • EXCEPTIONS

  • PARAMETER_ERROR = 1

  • NO_VALUES_FOUND = 2

  • OTHERS = 3

Regards