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: 

Standard Interface for BOM & Material Data

Former Member
0 Kudos

Hi....

I need a standard function module AND Idoc for transfering the following data.

If there is any standard available for these interface requirement, please share the same.

We would like to consider the standard functionality in IDOC, File transfer and any interface technology available SAP.

BOM Data - Both Inbound & Outbound

Material Data - Outbound

Regards,

Guru

1 ACCEPTED SOLUTION

SimoneMilesi
Active Contributor
0 Kudos

You can use BAPIs via RFC

BAPI_MATERIAL_SAVEDATA for materials

and FM for BOM

CSAP_MAT_BOM_CREATE

CSAP_MAT_BOM_DELETE

CSAP_MAT_BOM_MAINTAIN

5 REPLIES 5

SimoneMilesi
Active Contributor
0 Kudos

You can use BAPIs via RFC

BAPI_MATERIAL_SAVEDATA for materials

and FM for BOM

CSAP_MAT_BOM_CREATE

CSAP_MAT_BOM_DELETE

CSAP_MAT_BOM_MAINTAIN

0 Kudos

Hi Simone,

For both Material & BOM I also need the Outbound interface.

In fact for Material I need only the Outbound interface.

I am able to find more options for Inbound, but not at least one for outbound.

Regards,

Guru

0 Kudos

Sorry, i forgot the outbound question.

you can use Idocs

For BOM (which use depends on your BOM type, i suspect material bom)

MASTER_IDOC_CREATE_BOMDOC

MASTER_IDOC_CREATE_BOMMAT

MASTER_IDOC_CREATE_BOMMAT_PLUS

MASTER_IDOC_CREATE_BOMORD

For Material

SFA_MASTERIDOC_CREATE_MATERIAL

andrea_olivieri
Contributor
0 Kudos

Hi,

You don't need to create new ABAP programs because the inbound/outbound interface already exists .

It's a standard ALE scenario and the ALE Messages that you need to configure are MATMAS BOMMAT.

Documentation specific to your issue can be found here:

[First of all the SDN ABAP Connectivity Page|http://www.sdn.sap.com/irj/sdn/abap?rid=/webcontent/uuid/405c7b45-093d-2a10-8a94-e2c261603035] [original link is broken]; (ALE section can be found in the bottom of the page)

Then:

[Library of ALE Business Processes |http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFAIS/CABFAIS.pdf]

[Material master Data Distribution|http://help.sap.com/erp2005_ehp_04/helpdata/EN/78/217da751ce11d189570000e829fbbd/frameset.htm]

[Distributing Bill of Material Data in ALE Standard Process|http://help.sap.com/erp2005_ehp_04/helpdata/EN/2a/bfe43741fcc372e10000009b38f842/content.htm]

For further information on ALE see the following documentation:

[ALE Quick Start|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFAALEQS/CABFAALEQS.pdf]

[ALE Introduction and Administration|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDALEIO/BCMIDALEIO.pdf]

Some documents are a a little bit old, but they are very useful.

Regards,

Andrea

Former Member
0 Kudos

Thanks for sharing the possibilities...

I hope it will help to design the solution for the requirement.