‎2009 Jul 31 12:17 PM
Dear Experts
I need to display f4 help.
and i m using F4IF_INT_TABLE_VALUE_REQUEST function module.
In help, I hv display Plant number and Description of Plant.
Plant number is coming from t399i table and the description has to come from t001w table.
I m facing problem in populating the intertable with these two fields from different tables.
Can anyone help me in this.
Regards,
‎2009 Jul 31 12:20 PM
Hi,
You can either use joins or for all entries to select values from different tables into an internal table.
Thanks,
Sri.
‎2009 Jul 31 12:25 PM
HI,
TYPES : BEGIN OF ty_help,
werks TYPE werks_d,
desc TYPE char40,
end of ty_help.
DATA: git_disphlp TYPE TABLE OF gty_lines.
GET the data from two tables and append it to single table git_dishlp and pass it to the FM.
Regards,
Nagaraj
‎2009 Jul 31 12:41 PM
try this way---
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'TENDERID' " field name
DYNPPROG = PROGNAME
DYNPNR = DYNNUM
DYNPROFIELD = 'TENDERID' " field name
VALUE_ORG = 'S'
TABLES
VALUE_TAB = IT_TMP " internal table should contain the fields you wish to show in search help and the data too.
RETURN_TAB = T_RETURN. " T_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.
Regards,
Sumit Nene.
Edited by: Sumit Nene on Jul 31, 2009 1:42 PM