confirmTransferEvent
This method allows confirming or rejecting one or more transfer receiving objects.
To use it, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/storeroom/ConfirmTransferEventRequestType.java |
Return | web/wwwroot/ws/java/storeroom/ConfirmTransferEventResponseType.java |
Request:
ID | Required | Description |
---|---|---|
TRANSFEREVENTID | X | Transfer event ID #. |
STORAGEPLACEID | X | Source storage place ID #. |
CONFIRM | X | 1 - Execute / 2 - Reject selected record / Reject entire event. |
OBJECTID | Object ID #. | |
LOTNUMBER | Lot number. | |
SERIALNUMBER | Serial number. | |
EXPLANATION | Explanation. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:storeroom">
<soapenv:Header/>
<soapenv:Body>
<urn:confirmTransferEvent>
<!--You may enter the following 7 items in any order-->
<urn:TransferEventId>?</urn:TransferEventId>
<urn:StoragePlaceId>?</urn:StoragePlaceId>
<urn:Confirm>?</urn:Confirm>
<urn:ObjectId>?</urn:ObjectId>
<urn:LotNumber>?</urn:LotNumber>
<urn:SerialNumber>?</urn:SerialNumber>
<urn:Explanation>?</urn:Explanation>
</urn:confirmTransferEvent>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID | Description |
---|---|
return | SUCCESS: Operation successfully performed. FAILURE: Returns a message regarding the error that occurred. |