Application Development and Automation 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: 
Read only

call transcation

Former Member
0 Likes
974

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.

6 REPLIES 6
Read only

Former Member
0 Likes
821

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.

Read only

0 Likes
821

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

Read only

0 Likes
821

hi,

giv in CAPS...

when 'DICT'.

call transaction 'SE38'.

Read only

0 Likes
821

ALREADY I DIDIT SO ITS NOT WORKING .GUIDE ME YARR

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
821

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

Read only

0 Likes
821

How could i do so will u explain ? hwo could i assign buttons to boxes? how code will b relevence??