cancel
Showing results for 
Search instead for 
Did you mean: 

message type schema for the marketplace adapter

Former Member
0 Kudos

Hey guys!

We are trying to using the marketplace adapter in XI to send a Shopping Cart from SRM to the Marketsite. It seems as if we need specific kind of schema for the message type that correspond to a SOX schema for the marketsite.

Can anyone share how the schema that should be imported into the integration repository should look like? An example maybe?

Thanks in advance!

Glenn

PS. 6 - 10 points for the first helpful reply! )

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

According to SAP Note 898010, I need to put this sox statement for my adapter to process the document <i><?soxtype urn:x-commerceone:document:com:commerceone:schema1.sox$1.0?> </i>

Does anyone have a <i>sample schema with the above statement</i> inserted so that it is included in the XML output file?

Warm regards,

Glenn

Former Member
0 Kudos

hi

After Importing it is like this

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

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:sap-com:document:sap:rfc:functions" targetNamespace="urn:sap-com:document:sap:rfc:functions">

<xsd:element name="SXIDEMO_AIRL_FLIGHT_CHECKAVAIL">

<xsd:complexType>

<xsd:all>

<xsd:element name="FLIGHT_KEY" type="BAPISFLKEY" />

</xsd:all>

</xsd:complexType>

</xsd:element>

<xsd:simpleType name="genericDate">

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

<xsd:pattern value="....-..-.." />

</xsd:restriction>

</xsd:simpleType>

<xsd:simpleType name="date">

<xsd:union xmlns="urn:sap-com:document:sap:rfc:functions" memberTypes=" xsd:date genericDate" />

</xsd:simpleType>

<xsd:complexType name="BAPISFLKEY">

<xsd:sequence>

Thanks