inputEventInterface
This method allows:
- Adding an input event.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\storeroom\InputEventInterfaceRequestType.java |
Return | web\wwwroot\ws\java\storeroom\InputEventInterfaceResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDENTIFIER | X | Input event ID # |
REQUESTERTYPE | X¹ | Issuer type: 1 User ID Department; 2 User ID User; 3 User ID Supplier; 4 User ID Process activity. |
REQUESTERID | X² | Issuer ID #, according to the previous type: Department: Department ID #; User: User ID; Supplier: Supplier ID#; Process activity: Process activity ID #. |
ACTIVITYID | Process activity ID # | |
IDRESPONSIBLEFROM | Source responsibility ID # | |
DATEFROM | Source date | |
STOREROOMID | X | 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_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. |
info
- X¹ - Required if the "REQUESTERID" field is filled out.
- X² - Required if the "REQUESTERTYPE" field equals 4 (Process activity) and the "ACTIVITYID" field is filled out.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:storeroom">
<soapenv:Header/>
<soapenv:Body>
<urn:inputEventInterface>
<!--You may enter the following 11 items in any order-->
<urn:Identifier>?</urn:Identifier>
<urn:RequesterType>?</urn:RequesterType>
<urn:RequestId>?</urn:RequestId>
<urn:ActivityID>?</urn:ActivityID>
<urn:IdResponsibleFrom>?</urn:IdResponsibleFrom>
<urn:DateFom>?</urn:DateFom>
<urn:StoreroomId>?</urn:StoreroomId>
<urn:IdResponsibleTo>?</urn:IdResponsibleTo>
<urn:DateTo>?</urn:DateTo>
<urn:IdentifierRouteApprov>?</urn:IdentifierRouteApprov>
<urn:Description>?</urn:Description>
<urn:Attributes>?</urn:Attributes>
</urn:inputEventInterface>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: Operation successfully performed. FAILURE: Returns a message regarding the error that occurred |