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

RF Screen size.

Former Member
0 Likes
2,702

Hi,

I am working on some custome RF transactions. Here I need to handle my screen size according the device they use, it could be 8X40 or 16X20. I need to handle it dynamically. If any one came across such requirement, plz...guid me.

Venkat.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,132

you need to create two screen for each size.(8x40) and (16x20).

from table LRF_WKQU

you can select the warehouse number and screen format based on username and statu equal to X.

for example.

if lrf_wkqu-devty = c_size1.(16x20)

call screen 50.

elseif lrf_wkqu-devty = c_size2.(8x40)

call screen 1050.

endif.

1 REPLY 1
Read only

Former Member
0 Likes
1,133

you need to create two screen for each size.(8x40) and (16x20).

from table LRF_WKQU

you can select the warehouse number and screen format based on username and statu equal to X.

for example.

if lrf_wkqu-devty = c_size1.(16x20)

call screen 50.

elseif lrf_wkqu-devty = c_size2.(8x40)

call screen 1050.

endif.