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

MAKING A BOX SCROLLABLE

Former Member
0 Likes
447

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.

2 REPLIES 2
Read only

gopi_narendra
Active Contributor
0 Likes
415

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

Read only

athavanraja
Active Contributor
0 Likes
415

you cannot make BOX scrollable.

Raja