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

Screen for different screen resolution

Panneer
Product and Topic Expert
Product and Topic Expert
0 Likes
737

Hi,

I am designing an ABAP screen with low screen resolution. But If I change it to high resolution, my abap screen got shrinked.?

Can I design ABAP screen independent of various screen resolutions.?

Thanks,

2 REPLIES 2
Read only

Former Member
0 Likes
671

Hi,

We cannot change the screen resolution as it is purely related to GUI but if the requirement is in BDC,

then there is an option to maintain it in all the systems.

This can be done using the CTU_PARMS-DEFSIZE parameter.

This will maintain the default size of the screen in all the systems.

OPT is of type CTU_PARMS.

Then, CALL TRANSACTION TCODE OPTION OPT.

Hope it helps

Regards

Mansi

Read only

Former Member
0 Likes
671

Hi,

Just put gv_opts-DEFSIZE = 'X'. Where gv_opts is of type CTU_PARAMS. It will handle screen resolution automatically.

Thanks

Nitesh