import_calibration
This method allows adding and editing:
- Data of a calibration;
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 | Calibration plan ID # |
NRCERTIFICATE | X | Certificate # |
DTSTART | X | Start date (Y-M-D) |
HRSTART | X | Start time |
DTFINISH | X | End date (Y-M-D) |
HRFINISH | X | End time |
SVCCENTER | X | Service center |
RESP | X | Responsibility: â–ªInternal service center: User ID â–ªThird-party service center: Name |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:maintenance">
<soapenv:Header/>
<soapenv:Body>
<urn:import_calibration>
<!--You may enter the following 8 items in any order-->
<urn:idplanactivity>?</urn:idplanactivity>
<urn:nrcertificate>?</urn:nrcertificate>
<urn:dtstart>?</urn:dtstart>
<urn:hrstart>?</urn:hrstart>
<urn:dtfinish>?</urn:dtfinish>
<urn:hrfinish>?</urn:hrfinish>
<urn:svccenter>?</urn:svccenter>
<urn:resp>?</urn:resp>
</urn:import_calibration>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |