cancel
Showing results for 
Search instead for 
Did you mean: 

Screen Resolution in Webdynpro abap

former_member219737
Participant
0 Kudos

Hi Experts,

I need to reduce the Screen Resolution in screen given below . Request to suggest an idea for the same ...

Regards,

Karthik S

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Is your issue resolved?

Thanks

KH

Former Member
0 Kudos

Hi,

Set the scrollable col count to that table shown in your snapshot so that user can scroll the the table instead of screen.

Thanks

KH

former_member219737
Participant
0 Kudos

Hi Katrice,

Thanks for yr' reply ...

I have given the wrong screen shot ...

I have attached the right one below ...

User doesnot wants to scroll the application...it wants to fit into the screen ...

Can u suggest an idea for the same ...

Regards,

Karthik S

Former Member
0 Kudos

Hi,

Is that an ALV table or Normal table?

Thanks

KH

Former Member
0 Kudos

Hi,

If it an ALV table use below code.

DATA lo_settings            TYPE REF TO if_salv_wd_table_settings.

lo_settings = lv_value->if_salv_wd_view_settings~get_table_settings( ).

lo_settings->set_scrollable_col_count( 5 ). " 5 is an example.

That is you can scoll the table but not the screen.

If it a normal table.

set value for scrollableColCount property.

Thanks

KH

former_member219737
Participant
0 Kudos

Hi Katrice ,

Thanks for your reply...

Its an normal table and can i know the value to be set for scrollableColCount property...

Regards,

Karthik S

Former Member
0 Kudos

Hi,

Check the attached file which will help you.

Thanks

KH