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: 

Linking of Multiple transaction to one transaction.

Former Member
0 Kudos

Hi guy,

I want to link or you can say i want to chain three standard transaction to one transaction(can be Z)is this posible without writting abap code and calling transaction one by one.

Thanks

Atul

4 REPLIES 4

former_member188685
Active Contributor
0 Kudos

Hi,

yes, you can do that...

Create a module pool, and create 3 buttons, and for each button user command handling call each transaction in PAI.

this way you can call...

Regards

vijay

Former Member
0 Kudos

Hi

good

it is not possible to chain three transactions with one transaction.You have to write code for this.

Thanks

Mrutyun

Former Member
0 Kudos

Hi Atul

As far as my knowlege ,wihtout writing code you can not do this

You have to write code for this

For this you can make a program type M and than in the main screen you can give pushbutton along with fcodes for all three transactions

Coding correspoinding to each pushbutton i.e. calling transactions you can write in PAI module of main screen.

eg PAI module

CASE sy-ucomm."(okcode)

when 'F1'.

CALL TRANSACTION T1.

WHEN 'F2'.

CALL TRANSACTION T2.

WHEN 'F3'.

CALL TRANSACTION T3.

I hope this is what you want.

Thanks

0 Kudos

Thanks guys.

From ABAP i can do in lot of ways.

But what i was looking for is somthing else eg. Transaction variant or screen variant...or any thing else which SAP have provided.

Atul