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: 

ALV Grid - Display a value in huge size

salilvaidya
Explorer
0 Kudos

Hi all,

In one of my requirement, i need to display one value (calculated) in huge size and it should be adjusted as per the screen size ie the size will increase as the screen is increased and reduced as the screen is reduced. Moreover, this value needs to be refreshed every 5-10 seconds.

similarly, need an ALV grid below the above value (maybe in another container). and this should also be refreshed every 5-10 seconds.

Any pointers will be helpful

Thanks

Salil

2 REPLIES 2

Sandra_Rossi
Active Contributor
0 Kudos

Dynpro is limited to 255 columns and 200 rows, but you may fill the full screen size by using the Screen Container CL_GUI_CONTAINER=>SCREEN0 (0 for dynpro popup level 0, i.e. over screen of first level), in which you may display GUI Controls. It will work with the ALV Grid Control. NB: not possible to display dynpros inside containers.

raymond_giuseppi
Active Contributor
0 Kudos

You could

  • Use a docking container or a customer container in a standard dynpro
  • split it to display an html in the upper part and an ALV in the lower part.
  • Define the containers (dynpro also if defined) with very wide size, and auto-adjustment to screen
  • Look at w3schools for the huge size display
  • Use a class such as CL_GUI_TIMER to refresh display every n seconds.