import_table
This method allows creating:
- Results of calibration per table;
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\maintenance\Import_tableRequestType.java |
Return | web\wwwroot\ws\java\maintenance\Import_tableResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDPLANACTIVITY | X | Asset ID # |
NRCERTIFICATE | X | Certificate # |
NMTABLE | X | Table name |
TYPE_VALUE | X | Indicates whether it is: 1 - Calibration; 2 - Pre-calibration. |
VLTEND | X¹ | Trend or systematic error value [Bias ] |
VLFGES | X¹ | Total deviation value [Fges ] |
VLFE | X¹ | Deviation value [Fe ] |
VLU95 | X¹ | Expanded uncertainty value [U95 ] |
VLERRUP | X¹ | Ascending error value [Ascending error ] |
VLERRDOWN | X¹ | Descending error value [Descending error ] |
VLBAND | X¹ | Range error value [Range error ] |
VLAVERAGE | X¹ | Average value [Average ] |
VLREADBIG | X¹ | The highest reading value [The highest reading ] |
VLREADSMALL | X¹ | The lowest reading value [The lowest reading ] |
VLHISTERESE | X¹ | Hysteresis value [Hysteresis ] |
IDPROCESS | Process ID # | |
VARIABLE | Additional variable. Format: [Variable ID]=VALUE; [VARIABLE ID]=VALUE; Example: g=9.81 ; UPAD=0.01 ; | |
RESULT | Calibration result for subjective table: 1 - Approved; 2 - Rejected. | |
RESULTDI | Pre-calibration result for subjective table: 1 - Approved; 2 - Rejected. | |
OBSERVATION | Subjective table comments | |
VLFT | Biggest difference between two consecutive points. | |
VLVVC | Conventional True Value. |
info
X¹ - Required according to the formula.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:maintenance">
<soapenv:Header/>
<soapenv:Body>
<urn:import_table>
<!--You may enter the following 22 items in any order-->
<urn:idplanactivity>?</urn:idplanactivity>
<urn:nrcertificate>?</urn:nrcertificate>
<urn:nmtable>?</urn:nmtable>
<urn:type_value>?</urn:type_value>
<urn:vltend>?</urn:vltend>
<urn:vlfges>?</urn:vlfges>
<urn:vlfe>?</urn:vlfe>
<urn:vlu95>?</urn:vlu95>
<urn:vlerrup>?</urn:vlerrup>
<urn:vlerrdown>?</urn:vlerrdown>
<urn:vlband>?</urn:vlband>
<urn:vlaverage>?</urn:vlaverage>
<urn:vlreadbig>?</urn:vlreadbig>
<urn:vlreadsmall>?</urn:vlreadsmall>
<urn:vlhisterese>?</urn:vlhisterese>
<urn:vlft>?</urn:vlft>
<urn:idprocess>?</urn:idprocess>
<urn:variable>?</urn:variable>
<urn:result>?</urn:result>
<urn:resulttdi>?</urn:resulttdi>
<urn:observation>?</urn:observation>
<urn:vlvvc>?</urn:vlvvc>
</urn:import_table>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |