cancel
Showing results for 
Search instead for 
Did you mean: 

Dependent transactions in bdc --KO01 AND IE01

Former Member
0 Kudos
191

Hello All,

i have a task to record KO01 AND IE01 THROUGH BDC, i am able to record both the t.codes but not finding the link between both the t.codes,so can any please tell me in what way these two T.codes are dependent and functionality of them as wel....

Accepted Solutions (1)

Accepted Solutions (1)

ThomasZloch
Active Contributor
0 Kudos

Regarding the general functionality, please read SAP documentation.

Why must there be a link between them for BDC recording, please clarify.

Thomas

Answers (2)

Answers (2)

raymond_giuseppi
Active Contributor
0 Kudos

AFAIK

- KO01 create an internal order (can be support for budget control or asset) - get number in first parameter of message KO107 in BDCMSGCOLL structure returned internal table ([MESSAGES INTO|http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm#&ABAP_ADDITION_4@4@] for CALL TRANSACTION, no SM35 BDC)

- IE01 create an equipment, I suppose you have to use the newly created internal order in the additional data tab with the account assignment block

Truly your functionnal should have given you more information

Regards,

Raymond

Former Member
0 Kudos

the prob is that i got this requirement over the call,so the only thing which the functional ppl say is that, once the KO01 recording is finished , the number which gets generated by the end of the KO01 t.code should be passed to the IE01 t.code dynamically in the same program and the recording should trigger as the result of KO01 output ,so only i wanted to know hw these t.codes are dependent ???...functionality i did get in sap documentation but the thing which i want to know is the relation between these t.codes???hw these t.codes are related functionally...

Former Member
0 Kudos

After running KO01, the number generated should be in the return table. You can retrieve it and pass it to the next transaction.

Rob

ThomasZloch
Active Contributor
0 Kudos

I think your functional ppl should tell you where exactly they expect the internal order number to appear in the equipment master. Also this cannot be done as a BDC session in one go, you would need to do synchronous CALL TRANSACTION to be able to pass the newly created internal order number to the IE01 processing.

Thomas