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: 

GUI STATUS IN ALV USING OOPS

Former Member
0 Kudos

How can we set GUI STATUS in a alv program using oops...Is there any method we need to use for this ????

2 REPLIES 2

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Just call screen from your program as below .

call screen 9001.

In the PBO of the screen,write the following code

MODULE status_9001 OUTPUT.

SET PF-STATUS 'ZSTATUS'.

SET TITLEBAR 'ZTITLE'.

ENDMODULE. " STATUS_9001 OUTPUT

Former Member
0 Kudos

Hello Nagarjuna,

The GUI Status is a property of the Screen. It has got nothing to do with the ALV Grid / List. You set the GUI Status in the PBO of the screen.

Does that answer your question ?

Regards,

Anand Mandalika.