In our current project we are using SAPNCO3 with RFC calls. The requirement is to create material with the function "BAPI_MATERIAL_SAVEDATA" and some custom fields (via EXTENSIONIN). The problem now is how to extend the needed structures "BAPI_TE_MARA/X" so that they can carry the custom fields? I cannot found any function for this.
Please have a look at the Code snippet at the bottom.
Thank you!
Tobias
var BAPI_TE_MARA = repo.GetStructureMetadata("BAPI_TE_MARA");
IRfcStructure structure = BAPI_TE_MARA.CreateStructure();
structure.SetValue("MATERIAL", material.Number);
//structure.SetValue("ZMM_JOB_REFERENCE", "f");
My comment was half by half correct and incorrect, I wasn't aware of the extension technique in this BAPI, so I wasn't aware of this structure is really used in this BAPI.
You asked
and what I said is indeed stays valid: you cant extend the interface from NCo, only on backend.
You writes:
and this get me to the idea that your ABAP developers made only half of the work. The things to be done on the SAP backend:
MARA
table with custom Z fields (in SAP it is called Append structure)BAPI_TE_MARA
with the fields which should exactly correspond to theMARA
fieldsThis is how it must look like on backend
If you don't see any custom fields in
BAPI_TE_MARA
exceptMATERIAL
probably step 2 is missing on SAP side. As what I got from your comments, they created structureZMM_S_MATMAS_ADDITION
but appended it only toMARA
, but not toBAPI_TE_MARA
.What is missing from Sandra excellent holistic answer is step 3: for all this construction to work some customizing need to be done.
T130F
table must contain your custom fields. To maintain the entry for T130F go to transactionSPRO
or directly to maintenance viewV_130F
.SPRO way: go to
SPRO -> Logistics-General -> Material Master -> Field Selection -> Assign fields to field Selection Groups
and maintain the entry in the tableSample ABAP code that does the thing:
Based on this you can model your .Net code for BAPI calling.
P.S. Pay attention to the first line with
ALPHA = IN
. The input to the material number field must be in fully qualified 18-char format with leading zeroes, e.g.000000000000323
, otherwise the update will fail.