importRecvInspVar
This method allows importing inspection readings of variable-type characteristics:
Java class | |
---|---|
Request | web/wwwroot/ws/java/inspection/ImportRecvInspVarRequestType.java |
Return | web/wwwroot/ws/java/inspection/ImportRecvInspVarResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDRECEIVING | X | Receiving ID #. |
IDCHARACTERISTIC | X | Characteristic ID #. |
IDLABORATORY | Service center ID #. | |
IDUSER | Responsible user ID. | |
DSOBSERVATION | Comments on the characteristic. | |
ReadingsList | Readings, composed of a list: NRSAMPLE - Cycle #; NRREADING - Reading field #; VLREADING - Reading value (readings must have decimal separator equal to "."). |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:inspection">
<soapenv:Header/>
<soapenv:Body>
<urn:importRecvInspVar>
<!--You may enter the following 6 items in any order-->
<urn:IDRECEIVING>?</urn:IDRECEIVING>
<urn:IDCHARACTERISTIC>?</urn:IDCHARACTERISTIC>
<urn:IDLABORATORY>?</urn:IDLABORATORY>
<urn:IDUSER>?</urn:IDUSER>
<urn:DSOBSERVATION>?</urn:DSOBSERVATION>
<urn:ReadingsList>
<!--Zero or more repetitions:-->
<urn:Readings>
<!--You may enter the following 3 items in any order-->
<urn:NRSAMPLE>?</urn:NRSAMPLE>
<urn:NRREADING>?</urn:NRREADING>
<urn:VLREADING>?</urn:VLREADING>
</urn:Readings>
</urn:ReadingsList>
</urn:importRecvInspVar>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | Returns Status, Code, and Detail. Status can be SUCCESS or FAILURE. Code returns 1 when successful or 0 when there is a failure. Detail returns the error description in case of failure. |