Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • queryObject:Contains the request message that has various selection parameters to query and read information regarding outbound deliveries. 
  • processingConditionsObject:The xml object that specifies the conditions to process the query result.
Sample request

Anchor
request
request
Following is a sample REST/JSON request that can be handled by the queryOutboundDeliverables operation.

Code Block
languagexml
titleSample Request for queryOutboundDeliverables
<queryOutboundDeliverables>
    <username>USERNAME</username>
    <password>PASSWORD</password>
    <sapHost>HOST</sapHost>
    <blocking>false</blocking>
    <queryObject>
        <OutboundDeliveryFindByElementsRequestMessageBody/>
    </queryObject>
    <processingConditionsObject>
        <ProcessingConditions>
            <QueryHitsUnlimitedIndicator>true</QueryHitsUnlimitedIndicator>
        </ProcessingConditions>
    </processingConditionsObject>
</queryOutboundDeliverables>
Related SAP Business ByDesign documentation

http://help.sap.com/saphelp_byd1405/en/PUBLISHING/PSM_ISI_R_II_QUERY_OUTBOUND_DELIVERY_IN.html 

...

Following is a sample REST/JSON request that can be handled by the readOutboundDeliverablesoperation operation.

Code Block
languagexml
titleSample Request for readOutboundDeliverables
<readOutboundDeliverables>
    <username>USERNAME</username>
    <password>PASSWORD</password>
    <sapHost>HOST</sapHost>
    <blocking>false</blocking>
    <outboundDeliveryObject>
        <OutboundDelivery>
            <UUID>00163E02-8660-1EE2-8FF0-0CB8250DC543</UUID>
        </OutboundDelivery>
    </outboundDeliveryObject>
</readOutboundDeliverables>
Related SAP Business ByDesign documentation

http://help.sap.com/saphelp_byd1405/en/PUBLISHING/PSM_ISI_R_II_MANAGE_OUTBOUND_DELIVERY_IN.html

...