‎2010 Sep 09 2:45 PM
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.
‎2010 Sep 09 2:51 PM
Hi Krishna,
Check if you have passed the field business transaction in the internal table to the exporting parameter RETFIELD.
Sujay
‎2010 Sep 09 2:51 PM
Hi Krishna,
Check if you have passed the field business transaction in the internal table to the exporting parameter RETFIELD.
Sujay
‎2010 Sep 09 3:29 PM
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