cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any way posting transfer material movement type 309 via API?

t_tomoyasu
Discoverer
0 Kudos

I want to do posting transfer material using 309 movement type. Since there are a large number of materials to post transfer and it takes time to manually enter them, we are looking for API that can be registered. If you have any idea, could you please tell me the information of the corresponding API? System product is S/4 HANA Cloud MTE.

Best regards,

Tomoyasu Takagi

Mark_W
Product and Topic Expert
Product and Topic Expert
0 Kudos

We helped you to accept the answer, since there were no updates after 7 days.

You can unaccept it anytime if you have further questions.

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hi Tomoyasu
The Odata API API_MATERIAL_DOCUMENT_SRV is available

See the documentation here:
https://api.sap.com/api/API_MATERIAL_DOCUMENT_SRV/overview

https://help.sap.com/viewer/3f57e7df4a114edabffe8b2d581a59ed/latest/en-US/8bb0d08295044ee3af444b4f2a...


Here is an example json payload for multi item 309 transfer.

{

"GoodsMovementCode" : "04",

"to_MaterialDocumentItem" : [

{

"Plant" : "1010",

"StorageLocation" : "101A",

"Material" : "TG10",

"GoodsMovementType" : "309",

"QuantityInEntryUnit" : "1",

"EntryUnit" : "PC",

"IssuingOrReceivingPlant" : "1010",

"IssuingOrReceivingStorageLoc" : "101A",

"IssgOrRcvgMaterial" : "ZTG10"

},

{

"Plant" : "1010",

"StorageLocation" : "101A",

"Material" : "TG10",

"GoodsMovementType" : "309",

"QuantityInEntryUnit" : "1",

"EntryUnit" : "PC",

"IssuingOrReceivingPlant" : "1010",

"IssuingOrReceivingStorageLoc" : "101A",

"IssgOrRcvgMaterial" : "ZTG10"

},

{

"Plant" : "1010",

"StorageLocation" : "101A",

"Material" : "TG10",

"GoodsMovementType" : "309",

"QuantityInEntryUnit" : "1",

"EntryUnit" : "PC",

"IssuingOrReceivingPlant" : "1010",

"IssuingOrReceivingStorageLoc" : "101A",

"IssgOrRcvgMaterial" : "ZTG10"

}

]

}


Hope it help
Kind regards
Brian
t_tomoyasu
Discoverer
0 Kudos

Hi Brian,

Thank you for your reply. I think we can do what we want with your answer.

I appreciate for your help.

Best regards,

Tomoyasu Takagi

Answers (0)