relateChecklistToInspConfiguration
This method allows associating:
- Checklist with the inspection configuration.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\inspection\RelateChecklistToInspConfigurationRequestType.java |
Return | web\wwwroot\ws\java\inspection\RelateChecklistToInspConfigurationResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
FGOPTION | X | Code of the operation to be performed: 25 - Associate; 26 - Disassociate. |
IDCONFIGURATION | X | Inspection form ID #. |
IDCHECKLIST | X | Characteristic ID #. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:inspection">
<soapenv:Header/>
<soapenv:Body>
<urn:relateChecklistToInspConfiguration>
<!--You may enter the following 3 items in any order-->
<urn:FGOPTION>?</urn:FGOPTION>
<urn:IDCONFIGURATION>?</urn:IDCONFIGURATION>
<urn:IDCHECKLIST>?</urn:IDCHECKLIST>
</urn:relateChecklistToInspConfiguration>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | Returns Status, Code, and Detail â–ª Status can be SUCCESS or FAILURE. â–ª Code returns 1 for success, or 0 for failure. â–ª Detail returns error description in case of failure. |