2005 Aug 24 6:38 PM
Hi Everyone,
I have created screens and for this i have the application toolbar, standard toolbar, menu bar.
like the program help etc.
I want to create menu items in the menu bar apart from program & help which is created by default, like eg say screen object etc. and within each item i want a drop down menu with item like in the screen i have 3 pushbuttons, i want in the screen drop down menu these menu items but1, but2 etc.
How do i acheive this,
Any help on this will be of great use to me.
Thanks in advance,
Prabs.
2005 Aug 24 6:49 PM
You need to create a menu in SE41 and call it in your PBO of the screen using the syntax SET PF-STATUS 'ABC'.
You need to create a menu in SE41 and call it in your PBO of the screen using the syntax SET PF-STATUS 'ABC'.
2005 Aug 24 6:49 PM
You need to create a menu in SE41 and call it in your PBO of the screen using the syntax SET PF-STATUS 'ABC'.
2005 Aug 24 7:04 PM
2005 Aug 25 5:04 AM
Hi,
Double click on the ZSTATUS and in the applictaion toolbar create the buttons pass the function code BUT1 and perform some opertaion.
MODULE status_9001 OUTPUT.
IF o_dockingcontainer IS INITIAL.
SET PF-STATUS 'ZSTATUS'.
SET TITLEBAR 'ZTITLE'.
.................
ENDIF.
ENDMODULE. " STATUS_9001 OUTPUT
MODULE user_command_9001 INPUT.
CASE sy-ucomm.
WHEN 'EXIT' OR 'CANC'.
PERFORM f9600_free_objects:
USING o_alvgrid 'ALV' text-e02,
USING o_dockingcontainer 'DOCKING'
text-e01.
LEAVE PROGRAM.
WHEN 'BACK'.
PERFORM f9600_free_objects:
USING o_alvgrid 'ALV' text-e02,
USING o_dockingcontainer 'DOCKING'
text-e01.
SET SCREEN '0'.
LEAVE SCREEN.
<b> WHEN 'BUT1'.
perform...............</b>
WHEN OTHERS.
ENDCASE.
ENDMODULE. " USER_COMMAND_9001 INPUTHope this too helps.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |