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: 

MODULE STATUS_0100.

Former Member
0 Kudos

hey,

this is a very simple question to all dialog programmer experts. so in layman terms can anyone say what is this

MODULE STATUS_0100 when i create a screen ??

initially it is commented ..what can i write in this module and what are the other things i must do !!

i do understand that in MODULE USER_COMMAND_0100 i handle user actions on the screen elements thru function code .. but what is the above one for ??

thks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

btw, is that anything to do with the buttons which appear on top of say selection screen and which can handle user actions ??

like in VL71 ??

actually i need such a screen where user will enter the selection screen values and click the clock (generate ) button and that will take him to the next screen !!

3 REPLIES 3

Former Member
0 Kudos

btw, is that anything to do with the buttons which appear on top of say selection screen and which can handle user actions ??

like in VL71 ??

actually i need such a screen where user will enter the selection screen values and click the clock (generate ) button and that will take him to the next screen !!

0 Kudos

Thats right. This module is used to call the SET PF-STATUS statement, which defines all of the button in the upper part of the screen, including the main icons at the top, as well as the application toolbar. Gui status also controls the menu area. SET TITLE simply sets the title bar between the upper toolbar and the application toolbar.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi Friend,

Module STATUS_0100 is used to define GUI status and title for screen 100.

Check this sample code.

*----------------------------------------------------------------*
*   INCLUDE MDEMO_TRANSACTIONO01  (This is a PBO include.)       *
*----------------------------------------------------------------*
*&---------------------------------------------------------------*
*&      Module STATUS_0100
*&---------------------------------------------------------------*
*    Define GUI status and title for screen 100                  *
*----------------------------------------------------------------*
MODULE status_0100.
  SET PF-STATUS u2018 TZ0100 u2019 .
SET TITLEBAR u2018 100 u2019 .
ENDMODULE.

Regards,

Chandra Sekhar