Skip to main content
Version: 2.2.1

transferObjectInterface

This method allows associating an object with a transfer event.

To use it, it is necessary to follow the standard documented below.

Java class
Requestweb/wwwroot/ws/java/storeroom/TransferObjectInterfaceRequestType.java
Returnweb/wwwroot/ws/java/storeroom/TransferObjectInterfaceResponseType.java

Request:

ID #RequiredDescription
TRANSFEREVENTIDXTransfer event ID #.
OBJECTIDXObject ID #.
STORAGEPLACEIDXSource storage place ID #.
AMOUNTXQuantity.
LOTNUMBERLot number.
SERIALNUMBERSerial number.
VALIDITYDATEValidity date Date format must be Y-M-D (Year-Month-Day).
ATTRIBUTESAttributes.
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_attibute1
Note: 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:transferObjectInterface>
<!--You may enter the following 8 items in any order-->
<urn:TransferEventId>?</urn:TransferEventId>
<urn:ObjectId>?</urn:ObjectId>
<urn:StoragePlaceId>?</urn:StoragePlaceId>
<urn:Amount>?</urn:Amount>
<urn:LotNumber>?</urn:LotNumber>
<urn:SerialNumber>?</urn:SerialNumber>
<urn:ValidityDate>?</urn:ValidityDate>
<urn:Attributes>?</urn:Attributes>
</urn:transferObjectInterface>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
returnSUCCESS: Operation successfully performed.
FAILURE: Returns a message regarding the error that occurred.