importAttributeEvent
This method allows:
- Filling out the value of an event attribute.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\storeroom\ImportAttributeEventRequestType.java |
Return | web\wwwroot\ws\java\storeroom\ImportAttributeEventResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
EVENTID | X | Event ID # |
ATTRIBUTEID | X | Attribute ID # |
ATTRIBUTEVALUE | X¹ | Attribute value |
REVISIONID | X² | Revision ID # |
MEMOVALUE | X³ | Attribute value |
info
- X¹ - Required if the attribute is not of the "memo" type.
- X² - Required if the component needs the revision code in the specific table of the attribute.
- X³ - Required if the attribute is of the "memo" type.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:storeroom">
<soapenv:Header/>
<soapenv:Body>
<urn:importAttributeEvent>
<!--You may enter the following 5 items in any order-->
<urn:EventId>?</urn:EventId>
<urn:AttributeId>?</urn:AttributeId>
<urn:AttributeValue>?</urn:AttributeValue>
<urn:RevisionID>?</urn:RevisionID>
<urn:MemoValue>?</urn:MemoValue>
</urn:importAttributeEvent>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: Operation successfully performed. FAILURE: Returns a message regarding the error that occurred |