cancel
Showing results for 
Search instead for 
Did you mean: 

Creating Transportation Allocation using BAPI / Background Process

Former Member
0 Kudos

Hello All,

Can someone pls let me know if there is a way to create Transportation Allocation by BAPI / Background Process ?

Thanks in Advance.

Regards,

Uday

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Uday,

There is no BAPI available to create the allocations. Instead you can use the helper class methods.

Step 1: Create the trade lines using method /SCMTMS/CL_TDL_HELPER->CREATE_TDL_DATA

Step 2: Create the allocation using the method /SCMTMS/CL_TAL_CREATE->CREATE_TAL_NODES.

*TRY.CALL METHOD /scmtms/cl_tal_create=>create_tal_nodes
 
EXPORTING
    it_tdl_key       = <pass trade lane Key which was created in step 1)

    "

    "

    "

Endtry.


Regards,

Prema A