transferEventInterface
This method allows adding transfer events.
To use it, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web/wwwroot/ws/java/storeroom/TransferEventInterfaceRequestType.java |
| Return | web/wwwroot/ws/java/storeroom/TransferEventInterfaceResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| TRANSFEREVENTID | X | Transfer event ID #. |
| IDSTOREROOMFROM | X | Source storeroom ID #. |
| IDRESPONSIBLEFROM | Source responsibility ID #. | |
| DATEFROM | Source date. | |
| IDSTOREROOMTO | X | Destination storeroom ID #. |
| IDRESPONSIBLETO | Destination responsibility ID #. | |
| DATETO | Destination date. | |
| IDENTIFIERROUTEAPPROV | Approval route ID #. | |
| DESCRIPTION | Event description. | |
| ATTRIBUTES | Attributes. Example: identifier_of_attribute1=value_of_attribute1; identifier_of_attribute2=value_of_attribute2;identifier_of_attribute3=value_of_attribute3.Example with a multivalued attribute: identifier_of_attribute1=value1_of_attribute1, value2_of_attribute1, value3_of_attibute1Note: For attributes with a numeric value, the decimal place separator must be ".". For date fields, the value must have the āY-M-Dā (Year-Month-Day) format. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:storeroom">
<soapenv:Header/>
<soapenv:Body>
<urn:transferEventInterface>
<!--You may enter the following 10 items in any order-->
<urn:TransferEventId>?</urn:TransferEventId>
<urn:IdStoreroomFrom>?</urn:IdStoreroomFrom>
<urn:IdResponsibleFrom>?</urn:IdResponsibleFrom>
<urn:DateFrom>?</urn:DateFrom>
<urn:IdStoreroomTo>?</urn:IdStoreroomTo>
<urn:IdResponsibleTo>?</urn:IdResponsibleTo>
<urn:DateTo>?</urn:DateTo>
<urn:IdentifierRouteApprov>?</urn:IdentifierRouteApprov>
<urn:Description>?</urn:Description>
<urn:Attributes>?</urn:Attributes>
</urn:transferEventInterface>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: Operation successfully performed. FAILURE: Returns a message regarding the error that occurred |