'parameters ' ABAP instruction

Question:
How to make so that the contents of the drop-down menu of the instruction ' parameters' are that of an internal table?
Answer:
Here is a sample with parameter P_PARAM and IT_TABLE :
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = 'P_PARAM'
values = t_itab[]
EXCEPTIONS
id_illegal_name = 1
OTHERS = 2.
Call this FM in event INITIALIZATION or AT SELECTION-SCREEN OUTPUT if needed.
_________________
François Henrotte
ABAP Consultant
+32.475.28.75.32
(Belgium)
Please visit http://www.eponasolutions.com

More Articles:

Updating usr02-bocde?
Gui_download vs open dataset?
Transaction MB01 - need some help with a BDC?
another way of copying table contents?
Chart of Accounts?
Deleting an append structure whi?