2007 Jul 17 4:20 PM
Hi abapers i have an small query try to resolve the solution to me ....
i developed my tabstrip with diffferent buttons, under my subscreens i created few buttons like GOTO ABAPDICTIONATY , EDITOR,MENUPAINTER , SCREEN PAINTER ...IF I CLICK THIS BUTTONS SCREEN HAS TO TAKE ME TO DESIRED TRANSCATION DIRECTLY , how could it posible guide me , urgent requirement grades will be assigend with respect to points.
Hi abapers i have an small query try to resolve the solution to me ....
i developed my tabstrip with diffferent buttons, under my subscreens i created few buttons like GOTO ABAPDICTIONATY , EDITOR,MENUPAINTER , SCREEN PAINTER ...IF I CLICK THIS BUTTONS SCREEN HAS TO TAKE ME TO DESIRED TRANSCATION DIRECTLY , how could it posible guide me , urgent requirement grades will be assigend with respect to points.
2007 Jul 17 4:25 PM
IN teh PAI section of those subscreens, you must include the code
CALL TRANSACTION 'SE11'. for abap dictionary
CALL TRANSACTION 'SE38'. "for abap editor etc.
screen painetr tcode is SE51, Menu painter is se41.
module navigate.
case sy-ucomm.
when 'DICT'. "Assuming the fcode for the button for abap dictionary is DICT
CALL TRANSACTION 'SE11'. for abap dictionary
endcase.
endmodule.
2007 Jul 17 4:31 PM
i did it so similarly its not working iam sure .case ok_code.
when ' dict'.
call transcation ' se38'. its not working wat should i do is there any alternative method
2007 Jul 17 4:34 PM
2007 Jul 17 4:39 PM
2007 Jul 17 4:25 PM
Hi,
Then you can use CALL TRANSACTION to call these standard transactions.
In your PAI modules of corresponding subscreens use
CALL TRANSACTION to call these transactions.
Regards,
Sesh
2007 Jul 17 4:34 PM
How could i do so will u explain ? hwo could i assign buttons to boxes? how code will b relevence??
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |