‎2005 Dec 28 12:02 AM
Hi,
When I am using the FM : VRM_SET_VALUES, I am geting the key value but not the text. Below is the code:
name = 'PS_PARM'.
value-key = '1'.
value-text = 'Line 1'.
APPEND VALUE TO LIST.
VALUE-KEY = '2'.
VALUE-TEXT = 'LINE 2'.
APPEND VALUE TO LIST.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING ID = NAME
VALUES = LIST.
WRITE: / 'PARAMETER:', PS_PARM.
Here the value for PS_PARM is 2(when second record is selected).
How can i get LINE 2 instead of 2?
I did try using read statement but its not working....
‎2005 Dec 28 12:15 AM
I did try loop ... end loop.. it works now....
Hence, the thread is closed. Awards to myself.....:-)