Skip to content

Instantly share code, notes, and snippets.

@venkyvb
Created September 12, 2012 17:48
Show Gist options
  • Save venkyvb/3708527 to your computer and use it in GitHub Desktop.
Save venkyvb/3708527 to your computer and use it in GitHub Desktop.
CustomerQueryByContactPerson - Payload
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
<soapenv:Header/>
<soapenv:Body>
<glob:CustomerByElementsQuery_sync>
<CustomerSelectionByElements>
<SelectionByContactPersonWorkplaceEmailURI>
<InclusionExclusionCode>I</InclusionExclusionCode>
<IntervalBoundaryTypeCode>1</IntervalBoundaryTypeCode>
<LowerBoundaryEmailURI>...emailid...</LowerBoundaryEmailURI>
</SelectionByContactPersonWorkplaceEmailURI>
</CustomerSelectionByElements>
<ProcessingConditions>
<QueryHitsMaximumNumberValue>200</QueryHitsMaximumNumberValue>
<QueryHitsUnlimitedIndicator>false</QueryHitsUnlimitedIndicator>
</ProcessingConditions>
<RequestedElements customerTransmissionRequestCode="1">
</RequestedElements>
</glob:CustomerByElementsQuery_sync>
</soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
<soapenv:Header/>
<soapenv:Body>
<glob:ServiceRequestSimpleByElementsQuery_sync>
<ServiceRequest>
<SelectionByPartyID>
<InclusionExclusionCode>I</InclusionExclusionCode>
<IntervalBoundaryTypeCode>1</IntervalBoundaryTypeCode>
<LowerBoundaryID>.. customer internal id ...</LowerBoundaryID>
</SelectionByPartyID>
</ServiceRequest>
<ProcessingConditions>
<QueryHitsMaximumNumberValue>200</QueryHitsMaximumNumberValue>
<QueryHitsUnlimitedIndicator>false</QueryHitsUnlimitedIndicator>
</ProcessingConditions>
<RequestedElements ServiceRequestTransmissionRequestCode="1">
</RequestedElements>
</glob:ServiceRequestSimpleByElementsQuery_sync>
</soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
<soapenv:Header/>
<soapenv:Body>
<glob:CustomerByCommunicationDataQuery_sync>
<CustomerSelectionByCommunicationData>
<SelectionByEmailURI>
<InclusionExclusionCode>I</InclusionExclusionCode>
<IntervalBoundaryTypeCode>1</IntervalBoundaryTypeCode>
<LowerBoundaryEmailURI>..email..</LowerBoundaryEmailURI>
</SelectionByEmailURI>
</CustomerSelectionByCommunicationData>
<ProcessingConditions>
<QueryHitsMaximumNumberValue>200</QueryHitsMaximumNumberValue>
<QueryHitsUnlimitedIndicator>false</QueryHitsUnlimitedIndicator>
</ProcessingConditions>
<RequestedElements customerTransmissionRequestCode="1">
</RequestedElements>
</glob:CustomerByCommunicationDataQuery_sync>
</soapenv:Body>
</soapenv:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment