import_point
This method allows creating:
- Results of calibration per point;
To insert each of these items, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\maintenance\Import_pointRequestType.java |
| Return | web\wwwroot\ws\java\maintenance\Import_pointResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDPLANACTIVITY | X | Plan ID # |
| NRCERTIFICATE | X | Certificate # |
| NMTABLE | X | Table name |
| NMPOINT | X | Point name |
| FGUPORDOWN | X | In the case of hysteresis, it indicates whether the point is: 1 - Rising 2 - Descending |
| 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]. |
| VLFT | X | FT value [FT]. |
| IDPROCESS | X | Process ID #. |
| VARIABLE | X | Additional variable. Format: [Variable ID]=VALUE; [VARIABLE ID]=VALUE; Example: g=9.81; UPAD=0.01; |
| 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_point>
<!--You may enter the following 21 items in any order-->
<urn:idplanactivity>?</urn:idplanactivity>
<urn:nrcertificate>?</urn:nrcertificate>
<urn:nmtable>?</urn:nmtable>
<urn:nmpoint>?</urn:nmpoint>
<urn:fgupordown>?</urn:fgupordown>
<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:vlvvc>?</urn:vlvvc>
</urn:import_point>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |