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

Data Dictionary Element(F4 _ HELP)

Former Member
0 Likes
266

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

1 REPLY 1
Read only

Former Member
0 Likes
246

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