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: 

Fn Mod to "Call Transac"

kiran_k8
Active Contributor
0 Kudos

Hi Folks,

Just now came to know the existence of such a Fn Mod mentioned below:-

ABAP4_CALL_TRANSACTION

COPF_CALL_TRANSACTION.

I did a Program which calls VF11 and on success of VF11 it will call VA02.

Added to this I had added some conditions depending on Billing Type at the required PERFORMS in BDC.

Can I achieve the same functionality by using the above said Fn.Mods.

K.Kiran.

1 ACCEPTED SOLUTION

former_member181962
Active Contributor
0 Kudos

ABAP4_CALL_TRANSACTION is basically an encapsulation of a call transaction statement in a function module.

It means, you can replace the call transaction command with this function module.

Other than that this fm does nothing more.

Regards,

Ravi

7 REPLIES 7

Former Member
0 Kudos

HEllo Kira,

Check this thread:

Hope this will helps you.

Vasanth

former_member181962
Active Contributor
0 Kudos

ABAP4_CALL_TRANSACTION is basically an encapsulation of a call transaction statement in a function module.

It means, you can replace the call transaction command with this function module.

Other than that this fm does nothing more.

Regards,

Ravi

Former Member
0 Kudos

Yes Kiran,

Same can be achieved using the said FMs but be sure not to use NEW_SESSION = 'X' it should always be blank as your T codes are dependant... also for ABAP4_CALL-TRANSACTION <b>do not</b> use 'starting new task '<task>'

Thanks

Former Member
0 Kudos

Use the FM An dpAsss the T-CODE<b><b>ALINK_CALL_TRANSACTION</b></b>

kiran_k8
Active Contributor
0 Kudos

Hi Folks,

Thanks for your replies.In some replies it is mentioned that the Fn Mod mentioned here COPF_CALL_TRANSACTION,ABAP4_CALL_TRANSACTION just replaces the statement Call Transaction.

In such a case I have a few more doubts.

1.Where in we mention the UPDATE.MODE AND MESSTAB.?

2.Do we have any Fn Mod for SHDB operation too?

K.Kiran.

0 Kudos

There are import parameters and tables parameters for the same.

import

MODE_VAL

UPDATE_VAL

tables

MESS_TAB

2) No.

Regards,

Ravi

kiran_k8
Active Contributor
0 Kudos

Thnks for letting me know new concepts.