cancel
Showing results for 
Search instead for 
Did you mean: 

Node IDOC missing in Data Object structure in BPMN

Akhil_Sun
Participant
0 Kudos

Hi Experts,

I followed the below link to import idoc in NWBPM

https://blogs.sap.com/2014/09/24/idoc-to-nw-bpm-scenario/

Node IDOC missing when I try to add to data object.

idoc-nodemissing.png

Somebody raised the same question but it was not answered

https://answers.sap.com/questions/260863/node-idoc-missing-in-data-object-structure-in-bpmn.html

I am using SAP PO 7.5 SP06 version.

Can anybody try to help me why idoc node is missing in the structure idoc-datatype.png

idoc-nodemissing.png (10.9 kB) idoc-datatype.png (6.6 kB)

Accepted Solutions (1)

Accepted Solutions (1)

Akhil_Sun
Participant
0 Kudos

If anybody looking for answer why IDOC node is missing in the data object below is the answer.

As I said earlier I followed link https://blogs.sap.com/2014/09/24/idoc-to-nw-bpm-scenario/# in this link to import idoc in NWBPM. In this link there is a note saying To set a relevant type for a data object in BPM for an element, there needs to be a name associated with the complex type.

Based on that I modified my idoc

From

<xsd:element name="ZENOVIA">

<xsd:complexType>

<xsd:sequence>

<xsd:element name="IDOC" type="ZCLIN_ENOVIA_PO.ZENOVIA"/>

</xsd:sequence>

</xsd:complexType>

</xsd:element>

To

<xsd:element name="ZENOVIA" type="ZENOVIA"/>

<xsd:complexType name="ZENOVIA">

<xsd:sequence>

<xsd:element name="IDOC" type="ZCLIN_ENOVIA_PO.ZENOVIA"/>

</xsd:sequence>

</xsd:complexType>

By doing this I can see IDOC node in output mapping of start event.

idoc-node.png

Answers (0)