Application Development 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: 

How to increase screen size of results screen for FM SE16N_INTERFACE?

0 Kudos

Hello SAPients,

I'm writing a program to display/edit custom tables by usin the FM SE16N_INTERFACE. The problem I have is the output screen is small and the user would need to scroll a lot in the tables.

I really need to increase the size of the results screen in order to show more fields and save the user the hassle of having to scroll a lot. Do you guys know a way of doing this? Or do you know any other FM to perform this same result with a bigger screen?

Thanks in advance for your kind help.

1 ACCEPTED SOLUTION

former_member191735
Active Contributor
0 Kudos

*..Now display the results in a fullscreen ALV-Grid

if i_line_det <> true.

if i_display = true.

perform display_standard using i_old_alv

i_cwidth_opt_off.

else.

e_dref = gd_dref.

endif.

else.

perform display_line_nr.

endif.

I believe it displays in full screen automatically ....

2 REPLIES 2

former_member191735
Active Contributor
0 Kudos

*..Now display the results in a fullscreen ALV-Grid

if i_line_det <> true.

if i_display = true.

perform display_standard using i_old_alv

i_cwidth_opt_off.

else.

e_dref = gd_dref.

endif.

else.

perform display_line_nr.

endif.

I believe it displays in full screen automatically ....

0 Kudos

It was a version issue, in ECC 5.0 the screen is small, but applying the note https://service.sap.com/sap/support/notes/842342

or upgrading to a newer support package (SAPKH50010) solves the problem.

Regards.