‎2007 Feb 08 9:14 AM
Hi,
Could u pls give me suggestion , how to include all the entries of a table in F4 help list of a particular field of standard transaction CV01N ?
Thx and Regds,
bapi
‎2007 Feb 08 9:44 AM
HI You can try this Function Module ..
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
DDIC_STRUCTURE = 'T005'
PVALKEY = ' '
retfield = 'LAND1'
dynpprog = sy-repid
DYNPNR = sy-dynnr
dynprofield = 'P_LAND1'
callback_program = sy-repid
value_org = 'S'
TABLES
value_tab = t_t005
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
If you need Code snippet for this you can use where used list for this FM in your system
Please mark Usefull answers