2007 Nov 07 6:03 AM
Hi,
I have a z program and when i execute this program then a selection screen will display on that screen i want to add a menu with create,update and display.
Pls exper help me on this.
send me a code if u have.
thanks!
2007 Nov 07 6:07 AM
Hi,
use SET PFSTATUS in at selection-screen output.
SELECTION-SCREEN BEGIN OF BLOCK BLK_001.
parameters: p_lifnr type lfa1-lifnr.
SELECTION-SCREEN END OF BLOCK BLK_001.
AT SELECTION-SCREEN OUTPUT.
SET PF-STATUS 'PFST'.
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'MENU1'.
message i184(bctrain) with 'YAY its working'.
ENDCASE.
Regards,
Omkar.