‎2006 Dec 11 6:59 AM
hi guys
Please solve my prob,
i want to make a BOX in module pool programming SCROLLABALE so that i can fit 20 elements in it.
how can i do it, please give me the procedure.
thanks will be rewarded.
‎2006 Dec 11 7:10 AM
get the 20 items into a internal table.
now use the function module VRM_SET_VALUES in the PBO of the screen.
Usage as below
data: NAME type VRM_ID,
LIST type VRM_VALUES,
VALUE like line of LIST.
loop at itab.
VALUE-KEY = itab-field.
append VALUE to LIST.
clear itab.
endloop.
call function 'VRM_SET_VALUES'
exporting
ID = NAME
VALUES = LIST.
clear LIST.
Regards
- Gopi
‎2006 Dec 11 7:17 AM