cancel
Showing results for 
Search instead for 
Did you mean: 

Web Services SchemeID

Former Member

Hi,

Looking through several By Design web services there are a few parameters that I'm unfamiliar with (bold);

<ProductionOrderID schemeID="Token 10" schemeAgencyID="Token 11" schemeAgencySchemeAgencyID="Tok">61</ProductionOrderID>

They also seem to appear in sales order. Can anyone direct me as to what these parameters represent and the available options? I've trawled the help pages for documentation, but if anyone can tell me where to look it would be much appreciated.

Many Thanks,

Mark

Accepted Solutions (1)

Accepted Solutions (1)

knutheusermann
Product and Topic Expert
Product and Topic Expert

Hi Mark,

in most cases these attributes can be removed. There are just a very few cases in which schemeID, schemeAgencyID and schemeAgencySchemeAgencyID are important, for example the sender and receiver party in the B2B message header:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
	<soapenv:Header>
		<wsa:MessageID>uuid:14ad265f-e44a-44b2-bafb-0324d6ab3c40</wsa:MessageID>
	</soapenv:Header>
	<soapenv:Body>
		<ns0:PurchaseOrderRequest xmlns:ns0="http://sap.com/xi/SAPGlobal20/Global">
			<MessageHeader>
				<ID>1234</ID>
				<ReferenceID schemeAgencyID="1111111111" schemeAgencySchemeAgencyID="9" schemeID="ORDER">ABC0100</ReferenceID>
				<CreationDateTime>2013-01-16T18:52:00Z</CreationDateTime>
				<SenderParty>                                
					<!-- Business partner in ByD representing ExternalBupa -->
					<!-- <InternalID schemeAgencyID="310" schemeID="CommunicationPartyID">100000021</InternalID> -->
					<StandardID schemeAgencyID="9">1111111111</StandardID>
				</SenderParty>
				<RecipientParty> 
					<!-- Company in ByD representing MyCompany -->
					<!-- Standard ID schemeAgencyID: 009 GLN, 016 DUNS -->
					<StandardID schemeAgencyID="9">2222222222</StandardID>
				</RecipientParty>
				<!-- Type Code: 2 sending process, 3 receiving process -->
				<!-- ID: 97 Purchase Order Processing at Customer, 7 Sales Order Processing -->
				<BusinessScope>
					<TypeCode listAgencyID="310" listID="25201">2</TypeCode>
					<ID schemeAgencyID="310" schemeID="10555">97</ID>
				</BusinessScope>
				<BusinessScope>
					<TypeCode listAgencyID="310" listID="25201">3</TypeCode>
					<ID schemeAgencyID="310" schemeID="10555">7</ID>
				</BusinessScope>
			</MessageHeader>
			<PurchaseOrder itemListCompleteTransmissionIndicator="true" reconciliationPeriodCounterValue="01">
				<ID>ABC0100</ID>
				<BuyerParty>
                                ...

Best regards,
Knut

Answers (0)