cancel
Showing results for 
Search instead for 
Did you mean: 

No message exists... when I use XSD in MM

Former Member
0 Kudos

Following is the XSD that I am trying to use as External definition for my MM.

When I test this in XML Spy, its working

but when I import it to XI and and try to use it MM, it says a message "No Message exists."

Here is the XSD :

<?xml version="1.0" encoding="ISO-8859-1"?>

<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:l="http://www.abcd.com/application/ws/location" xmlns:att="http://www.abcd.com/application/ws/entityAttribute" xmlns:cr="http://www.abcd.com/application/ws/confirmedRequest" xmlns:p="http://www.abcd.com/application/ws/part" xmlns:crl="http://www.abcd.com/application/ws/confirmedRequestLine" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.abcd.com/application/ws/confirmedRequestLine">

<import namespace="http://www.abcd.com/application/ws/part" schemaLocation="http://206.13.59.162:8080/Branch62/services/ConfirmedRequestLine?xsd=xsd1" />

<import namespace="http://www.abcd.com/application/ws/location" schemaLocation="http://206.13.59.162:8080/Branch62/services/ConfirmedRequestLine?xsd=xsd4" />

<import namespace="http://www.abcd.com/application/ws/confirmedRequest" schemaLocation="http://206.13.59.162:8080/Branch62/services/ConfirmedRequestLine?xsd=xsd7" />

<import namespace="http://www.abcd.com/application/ws/entityAttribute" schemaLocation="http://206.13.59.162:8080/Branch62/services/ConfirmedRequestLine?xsd=xsd3" />

<element name="ConfirmedRequestLines" type="crl:ConfirmedRequestLines" />

<complexType name="ConfirmedRequestLines">

<sequence>

<element maxOccurs="unbounded" minOccurs="0" name="Location" type="crl:Location" />

</sequence>

</complexType>

<complexType name="Location">

<sequence>

<element maxOccurs="unbounded" minOccurs="0" name="Part" type="crl:Part" />

</sequence>

<attribute name="name" type="l:nameString" use="required" />

</complexType>

<complexType name="Part">

<sequence>

<element maxOccurs="unbounded" minOccurs="0" name="ConfirmedRequestLine" type="crl:ConfirmedRequestLine" />

</sequence>

<attribute name="name" type="p:nameString" use="required" />

</complexType>

<complexType name="ConfirmedRequestLine">

<sequence>

<element minOccurs="0" name="CustomAttributes" type="crl:CustomAttributes" />

</sequence>

<attribute name="confirmedRequest" type="cr:nameString" use="required" />

<attribute name="line" type="integer" use="required" />

<attribute name="requestDate" type="date" use="required" />

<attribute name="dueDate" type="date" use="required" />

<attribute name="quantityOrdered" type="integer" use="required" />

<attribute name="quantityReceived" type="integer" use="required" />

<attribute name="requestStatus" type="crl:requestStatus" use="required" />

<attribute name="supplierLoaction" type="l:nameString" />

<attribute name="proposedRequest" type="double" />

</complexType>

<complexType name="CustomAttributes">

<sequence>

<element maxOccurs="8" minOccurs="0" ref="att:CustomAttribute" />

</sequence>

</complexType>

<simpleType name="requestStatus">

<restriction base="string">

<enumeration value="Open" />

<enumeration value="Closed" />

<enumeration value="Partial" />

</restriction>

</simpleType>

</schema>

regards,

Nikhil.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Nikhil,

when importing XSD in external definition(ED), choose Do not extract messages.

now in ED, see in messages tab, is there any message in it..........if not, then you need to change your XSD as it does not contain any message................if there is a message in message tab, then choose this ED in msg mapping, then you will get your XSD msg in msg mapping.

Regards,

Rajeev Gupta

Former Member
0 Kudos

hi nikhil,

XSD is missing .

IT IS NOT documented.

elements are not prooperly nested.

best way to just click on any dataype and click on XSD tab.

now compare ur XSD with Data type XSD u ll know the differences.

i see tags are not properly nested.

sample data type XSD.

<?xml version="1.0" encoding="ISO-8859-1"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<xsd:element name="SHP_IBDLV_CONFIRM_DECENTRAL03">

<xsd:complexType>

<xsd:sequence>

<xsd:element name="IDOC" type="SHP_IBDLV_CONFIRM_DECENTRAL.SHP_IBDLV_CONFIRM_DECENTRAL03" maxOccurs="unbounded" />

</xsd:sequence>

</xsd:complexType>

</xsd:element>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL.SHP_IBDLV_CONFIRM_DECENTRAL03">

<xsd:annotation>

<xsd:documentation>

BAPI Confirmation(InboundDelivery)

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="EDI_DC40" type="EDI_DC40.SHP_IBDLV_CONFIRM_DECENTRAL.SHP_IBDLV_CONFIRM_DECENTRAL03" />

<xsd:element name="E1SHP_IBDLV_CONFIRM_DECENTR" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1SHP_IBDLV_CONFIRM_DECENTR" minOccurs="0" />

</xsd:sequence>

<xsd:attribute name="BEGIN" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03._-SPE_-E1BPIBDLVITEMCONF">

<xsd:annotation>

<xsd:documentation>

BAPIIBDLVITEMCONF Inbound delivery additional item data

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NEW_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Inbound delivery: New Item indicator

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CLOSE_INDICATOR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Inbound delivery: Closing indicator

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STGE_LOC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Storage Location

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="QTY_POST" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

GR-Posted Quantity in BUn (MDIFF)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base Unit of Measure

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base unit of measure in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="EXCEPTION_CODE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Exception Code Warehouse for Quantity Difference

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WHSE_REF_NMBR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Number of Material Document in EWM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="16" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WHSE_REF_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item Number of Material Document in EWM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WHSE_ORG_REF_NMBR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Original Number of Material Document in EWM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="16" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WHSE_ORG_REF_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item Number of original Material Document in EWM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ITEM_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPTOKENREFERENCE">

<xsd:annotation>

<xsd:documentation>

Reference for CSL Token (CSL_TR_EXS)

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="TR_EXT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

CSL: CSL-External Representation of a Token Reference

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="255" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVHDRCON">

<xsd:annotation>

<xsd:documentation>

Verification Inb. Delivery Picking Data Header Level

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="GROSS_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Gross weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NET_WEIGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Net weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of weight in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUME" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DOOR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Door for Warehouse Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="EXTDELV_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External Identification of Delivery Note

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="35" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1SHP_IBDLV_CONFIRM_DECENTR">

<xsd:annotation>

<xsd:documentation>

Header Segment

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIVERY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="E1BPIBDLVHDRCON" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVHDRCON" minOccurs="0" />

<xsd:element name="E1BPIBDLVHDRCTRLCON" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVHDRCTRLCON" minOccurs="0" />

<xsd:element name="E1BPDLVCONTROL" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVCONTROL" minOccurs="0" />

<xsd:element name="_-SPE_-E1BPIBDLVHDRCTRLCONF" type="SHP_IBDLV_CONFIRM_DECENTRAL03._-SPE_-E1BPIBDLVHDRCTRLCONF" minOccurs="0" />

<xsd:element name="E1BPDLVPARTNERCHG" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNERCHG" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVPARTNADDRCHG" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNADDRCHG" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVDEADLN" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVDEADLN" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPIBDLVITEMCON" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVITEMCON" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPIBDLVITEMCTRLCON" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVITEMCTRLCON" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVITMSERNO" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVITMSERNO" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVHDUNHDR" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNHDR" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVHDUNITM" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNITM" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPDLVHDUNSERNO" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNSERNO" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPEXTC" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPEXTC" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPEXT" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPEXT" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="E1BPTOKENREFERENCE" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPTOKENREFERENCE" minOccurs="0" maxOccurs="999999999" />

<xsd:element name="_-SPE_-E1BPIBDLVITEMCONF" type="SHP_IBDLV_CONFIRM_DECENTRAL03._-SPE_-E1BPIBDLVITEMCONF" minOccurs="0" maxOccurs="999999999" />

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="EDI_DC40.SHP_IBDLV_CONFIRM_DECENTRAL.SHP_IBDLV_CONFIRM_DECENTRAL03">

<xsd:sequence>

<xsd:element name="TABNAM" type="xsd:string" fixed="EDI_DC40">

<xsd:annotation>

<xsd:documentation>

Table Structure Name

</xsd:documentation>

</xsd:annotation>

</xsd:element>

<xsd:element name="MANDT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Client

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DOCNUM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

IDoc Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="16" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DOCREL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

SAP IDoc Release

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STATUS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

IDoc Status

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DIRECT">

<xsd:annotation>

<xsd:documentation>

Direction

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:enumeration value="1">

<xsd:annotation>

<xsd:documentation>

Outbound

</xsd:documentation>

</xsd:annotation>

</xsd:enumeration>

<xsd:enumeration value="2">

<xsd:annotation>

<xsd:documentation>

Inbound

</xsd:documentation>

</xsd:annotation>

</xsd:enumeration>

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="OUTMOD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Output Mode

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="EXPRSS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Overriding in Inbound Processing

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TEST" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Test Flag

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="IDOCTYP" type="xsd:string" fixed="SHP_IBDLV_CONFIRM_DECENTRAL03">

<xsd:annotation>

<xsd:documentation>

Basic Type Name

</xsd:documentation>

</xsd:annotation>

</xsd:element>

<xsd:element name="CIMTYP" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Enhancement (Customer-Defined)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MESTYP" type="xsd:string" fixed="SHP_IBDLV_CONFIRM_DECENTRAL">

<xsd:annotation>

<xsd:documentation>

Message Type

</xsd:documentation>

</xsd:annotation>

</xsd:element>

<xsd:element name="MESCOD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Message Variant

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MESFCT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Message Function

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

EDI Standard, Flag

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STDVRS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

EDI Standard, Version, and Release

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STDMES" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

EDI Message Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDPOR">

<xsd:annotation>

<xsd:documentation>

Sender Port (SAP System, External Subsystem)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDPRT">

<xsd:annotation>

<xsd:documentation>

Sender Partner Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDPFC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sender Partner Function

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDPRN">

<xsd:annotation>

<xsd:documentation>

Sender Partner Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDSAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sender Address (SADR)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="21" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SNDLAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical Sender Address

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="70" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVPOR">

<xsd:annotation>

<xsd:documentation>

Receiver Port

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVPRT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Receiver Partner Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVPFC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Receiver Partner Function

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVPRN">

<xsd:annotation>

<xsd:documentation>

Receiver Partner Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVSAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Receiver Address (SADR)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="21" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RCVLAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical Receiver Address

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="70" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CREDAT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Creation Date

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CRETIM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Creation Time

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="REFINT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Interchange File (EDI Interchange)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="14" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="REFGRP" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Message Group (EDI Message Group)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="14" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="REFMES" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Message (EDI Message)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="14" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ARCKEY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External Message Archive Key

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="70" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SERIAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Serialization

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVITMSERNO">

<xsd:annotation>

<xsd:documentation>

BAPI Delivery Serial Numbers Item

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ITM_NUMBER" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item number of the SD document

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SERIALNO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Serial number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="18" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNADDRCHG">

<xsd:annotation>

<xsd:documentation>

Delivery: Address Change for Partner

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="UPD_MODE_ADR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Update Indicator for Requested Address Changes

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ADDR_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Address number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FORMOFADDR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Form of address text

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NAME" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Name 1

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NAME_2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Name 2

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NAME_3" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Name 3

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NAME_4" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Name 4

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="C_O_NAME" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

c/o name

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CITY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DISTRICT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

District

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CITY_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City code for city/street file

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="12" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="POSTL_COD1" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City postal code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="POSTL_COD2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

PO Box postal code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="POSTL_COD3" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Company postal code (for large customers)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PO_BOX" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

PO Box

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PO_BOX_CIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

PO Box city

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_DIS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Not Supported) Post Delivery District

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STREET" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street name

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STREET_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street Number for City/Street File

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="12" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STR_ABBR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Not Supported) Abbreviation of Street Name

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HOUSE_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

House Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STR_SUPPL1" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street 2

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STR_SUPPL2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street 3

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOCATION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street 5

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BUILDING" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

old: building (no. or abbreviation)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FLOOR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Floor in building

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ROOM_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Room or Appartment Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="COUNTRY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Country Key

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LANGU" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Language Key

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="REGION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Region (State, Province, County)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SORT1" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Search Term 1

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SORT2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Search Term 2

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TIME_ZONE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Address time zone

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TAXJURCODE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Tax Jurisdiction

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ADR_NOTES" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Address notes

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="50" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="COMM_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Communication Method (Key) (Business Address Services)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TEL1_NUMBR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

First telephone no.: dialling code+number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TEL1_EXT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

First Telephone No.: Extension

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FAX_NUMBER" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

First fax no.: dialling code+number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FAX_EXTENS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

First fax no.: extension

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STREET_LNG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="60" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DISTRCT_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

District code for City and Street file

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CHCKSTATUS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City file test status

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PBOXCIT_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City PO box code (City file)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="12" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TRANSPZONE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Transportation zone to or from which the goods are delivered

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HOUSE_NO2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

House number supplement

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="E1BPDLVPARTNADDRCHG1" type="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNADDRCHG1" minOccurs="0" />

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNSERNO">

<xsd:annotation>

<xsd:documentation>

Handling Unit Serial Numbers

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="HU_EXID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External Handling Unit Identification

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="OBJECT_DOC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Document number of the packed item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ITM_NUMBER" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SERIALNO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Serial number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="18" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNERCHG">

<xsd:annotation>

<xsd:documentation>

Delivery: Partner Change

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="UPD_MODE_PARTN" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Update Indicator for Requested Partner Changes

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ITM_NUMBER" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Item number of the SD document

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PARTN_ROLE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Partner Function

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PARTNER_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Partner number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ADDRESS_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Address

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DESC_PARTN" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Customer description of partner (plant, storage location)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MANUAL_ADDR" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Flag: Pass on manual address for this partner?

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SCA_CODE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Standard carrier access code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVITEMCTRLCON">

<xsd:annotation>

<xsd:documentation>

Control Data Inbound Delivery Item Level

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CHG_DELQTY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Change delivery quantity

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DEL_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Flag: delete delivery item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUME_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of volume

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NET_WT_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of net weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="GROSS_WT_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of gross weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="EXPIRYDATE_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Verification of Expiration Date

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PROD_DATE_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirm Date of Manufacture

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVPARTNADDRCHG1">

<xsd:annotation>

<xsd:documentation>

Delivery: Address Change for Partner

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="E_MAIL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

E-Mail Address

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="241" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STR_SUPPL3" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street 4

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TITLE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Title text

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="COUNTRYISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Country ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LANGU_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Language according to ISO 639

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BUILD_LONG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Building (Number or Code)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="REGIOGROUP" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Regional structure grouping

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HOME_CITY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

City (different from postal city)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HOMECITYNO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Different city for city/street file

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="12" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PCODE1_EXT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Not Supported)City Postal Code Extension, e.g. ZIP42 Code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PCODE2_EXT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Not Supported) PO Box Postal Code Extension

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PCODE3_EXT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Not Supported) Major Customer Postal Code Extension

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PO_W_O_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Flag: PO Box without number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PO_BOX_REG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Region for PO Box (Country, State, Province, ...)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="POBOX_CTRY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

PO box country

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PO_CTRYISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Country ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HOMEPAGE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

URI, e.g. Homepage or ftp Address

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="132" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DONT_USE_S" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Street Address Undeliverable Flag

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DONT_USE_P" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

PO Box Address Undeliverable Flag

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPEXT">

<xsd:annotation>

<xsd:documentation>

BFA: Container for Customer Exit Parameter.

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="PARAM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Element

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="32" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ROW" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Lines in parameter

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="11" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FIELD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Field name

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="30" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VALUE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Char255

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="255" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Data Type in ABAP Dictionary

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LENGTH" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Length (No. of Characters)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVHDRCTRLCON">

<xsd:annotation>

<xsd:documentation>

Control Data Inbound Del. Header Level

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="GROSS_WT_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of gross weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NET_WT_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of net weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUME_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirmation of volume

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="POST_GI_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Post Goods Movement Automatically

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_DATE_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirm delivery date

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DOCK_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Confirm gate

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_DEL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Flag: delete delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SIMULATE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Simulation of Delivery Change (No DB Change)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_EXTID_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Change External Delivery Identification

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NO_LOCK" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

No-Blocking Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPIBDLVITEMCON">

<xsd:annotation>

<xsd:documentation>

Verification Inbound Delivery Picking Data Header Level

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Material Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="18" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BATCH" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Batch Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HIERARITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Superior item in an item hierarchy

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="USEHIERITM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Use of Hierarchy Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_QTY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Actual quantity delivered (in sales units)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_QTY_IMUNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Actual quantity delivered in stockkeeping units

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FACT_UNIT_NOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Numerator (factor) for conversion of sales quantity into SKU

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FACT_UNIT_DENOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Denominator (Divisor) for Conversion of Sales Qty into SKU

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CONV_FACT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Conversion factor: quantities

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="24" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="GROSS_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Gross weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="NET_WEIGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Net weight

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of weight in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUME" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SALES_UNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sales unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SALES_UNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

ISO code for sales unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base Unit of Measure

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base unit of measure in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DEL_QTY_FLO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Internal field/ Do not use / LFIMG in float / MUM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="24" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_QTY_ST_FLO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Internal field/ Do not use / LGMNG in float / MUM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="24" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STOCK_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Stock Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VAL_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Valuation Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_EXTERNAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Long Material Number for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_GUID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External GUID for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="32" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_VERSION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Version Number for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="INSPLOT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Inspection Lot Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="12" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="EXPIRYDATE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Shelf Life Expiration or Best-Before Date

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PROD_DATE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Date of Manufacture

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03._-SPE_-E1BPIBDLVHDRCTRLCONF">

<xsd:annotation>

<xsd:documentation>

Inbound Delivery Confirmation - Insert Header Parameter SPL

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SENDER_METHOD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

(Inbound) Method to describe the business process

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNITM">

<xsd:annotation>

<xsd:documentation>

Handling Unit Item

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="HDL_UNIT_INTO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Shipping unit used for packing

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Internal Handling Unit Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_EXID_INTO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

ID of the Handling Unit into Which Goods Are Packed

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_EXID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External Handling Unit Identification

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DELIV_ITEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PACK_QTY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Packed Sales Quantity in the Handling Unit Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SALES_UNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sales unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SALES_UNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sales unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Material Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="18" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BATCH" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Batch Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_EXTERNAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Long Material Number for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_GUID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External GUID for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="32" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MATERIAL_VERSION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Version Number for MATERIAL Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HU_ITEM_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Type of Handling-unit Item Content

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PACK_QTY_BASE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base Quantity Packed in the Handling Unit Item

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base Unit of Measure of the Quantity to be Packed (VEMNG)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base unit of measure of packed quantity (VEMNG) ISO

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVCONTROL">

<xsd:annotation>

<xsd:documentation>

Technical Control Delivery BAPI

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DEBUG_FLG" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Debugging flag

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UPD_IND" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Simulation: Delivery Change to Follow

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RECV_WHS_NO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Warehouse Number / Warehouse Complex

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="RECV_SYS" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical system

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DLV_TYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVDEADLN">

<xsd:annotation>

<xsd:documentation>

Delivery Deadlines

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TIMETYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical time

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TIMESTAMP_UTC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

UTC Time Stamp in Short Form (YYYYMMDDhhmmss)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="16" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TIMEZONE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Time Zone

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="6" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPEXTC">

<xsd:annotation>

<xsd:documentation>

BFA: Container for Customer Exit Parameter.

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="FIELD1" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Character field with length 250

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="250" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FIELD2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Character field with length 250

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="250" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FIELD3" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Character field with length 250

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="250" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="FIELD4" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Character field with length 250

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="250" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

<xsd:complexType name="SHP_IBDLV_CONFIRM_DECENTRAL03.E1BPDLVHDUNHDR">

<xsd:annotation>

<xsd:documentation>

Handling unit header data

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name="DELIV_NUMB" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Delivery

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Internal Handling Unit Number

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_EXID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External Handling Unit Identification

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="20" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_EXID_TY" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Type of External Handling Unit Identifier

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TOTAL_WGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Total Weight of Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOAD_WGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Loading Weight of Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ALLOWED_WGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Allowed Loading Weight of a Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_WT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of weight in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_WGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Tare weight of handling unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_UNIT_WT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight unit tare

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_UNIT_WT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight unit tare in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TOTAL_VOL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Total Volume of Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOAD_VOL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Loading Volume of Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ALLOWEDVOL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Allowed Loading Volume for Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOLUMEUNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_VOL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Tare volume of handling unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_UNI_VOL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Volume unit tare

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TARE_UNI_VOL_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of tare volume in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SORT_FLD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Sort field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GRP1" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Handling Unit Group 1 (Freely Definable)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GRP2" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Handling Unit Group 2 (Freely Definable)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GRP3" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Handling Unit Group 3 (Freely Definable)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GRP4" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Handling Unit Group 4 (Freely Definable)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GRP5" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Handling Unit Group 5 (Freely Definable)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SHIP_MAT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Packaging Materials

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="18" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LENGTH" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Length

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WIDTH" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Width

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HEIGHT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Height

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="15" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_DIM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of Dimension for Length/Width/Height

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_DIM_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit for length/breadth/height in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WT_TOL_LT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Excess Weight Tolerance for Handling unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="VOL_TOL_LT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Excess Volume Tolerance of the Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="5" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base Unit of Measure

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="BASE_UOM_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Base unit of measure in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="CONTENT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Description of Handling Unit Content

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SH_MAT_TYP" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Packaging Material Type

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="MAT_GRP_SM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Material Group: Packaging Materials

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PLANT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Plant

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LGTH_LOAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Lgth of loading platform in lgth of LdPlat measurement units

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOAD_LGT_UNIT" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of measure to measure the length of loading platform

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOAD_LGT_UNIT_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Load unit of measure in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="TRAVL_TIME" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Travel Time

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DRIVTIMEUN" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of travel time

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DRIVTIMEUN_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Travel time unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="DISTANCE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Distance Travelled

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="8" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_DIST" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Unit of distance

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="UNIT_OF_DIST_ISO" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Travel time unit in ISO code

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="3" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="STGE_LOC" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Storage Location

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="4" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="WT_VOL_FIX" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Weight and Volume Fixed

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SHIP_MAT_EXTERNAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Long Material Number for SHIP_MAT Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="40" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SHIP_MAT_GUID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

External GUID for SHIP_MAT Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="32" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="SHIP_MAT_VERSION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Version Number for SHIP_MAT Field

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PACKNR_CONV" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Packing instruction

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="22" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="PACKSTATUS_LOCAL" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Local packing status for a single HU (without sub HUs)

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="ALLOWEDLOAD" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Allowed load

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="17" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LABELTYPE" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Indicator: do not print external shipping label

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="1" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="HDL_UNIT_GUID" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Worldwide unique key for VEKP-VENUM

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="22" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOG_SYSTEM" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical system

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="10" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

<xsd:element name="LOG_POSITION" minOccurs="0">

<xsd:annotation>

<xsd:documentation>

Logical Position of Handling Unit

</xsd:documentation>

</xsd:annotation>

<xsd:simpleType>

<xsd:restriction base="xsd:string">

<xsd:maxLength value="2" />

</xsd:restriction>

</xsd:simpleType>

</xsd:element>

</xsd:sequence>

<xsd:attribute name="SEGMENT" type="xsd:string" fixed="1" use="required" />

</xsd:complexType>

</xsd:schema>

Thanks & Regards,

rama Krishna

Edited by: rama krishna talluri on Mar 7, 2008 12:24 PM

Former Member
0 Kudos

Hi Ramakrishna,

Thanks for your reply.

I have tried with the XSD u gave me.

Its not working either.

thanks

Nikhil.

GabrielSagaya
Active Contributor
0 Kudos

change your encoding="ISO-8859-1 into "UTF-8" in your XSD file

Because your mapping supports by default and test it again.

Former Member
0 Kudos

Hi Gabriel,

<?xml version="1.0" encoding="ISO-8859-1"?>

The above line was inserted by XI while I was importing the XSD file.

Even if I try to edit it, its not letting me to edit

FYI, I have around 18 external definitions (all XSD) I have checked for all and for all its in the ISO-8859-1

I dont this is the problem.

Thanks Gabriel,

Nikhil.