addFailureControl
This method allows adding/editing:
- Failure control data.
To insert each of these items, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\fmea\AddFailureControlRequestType.java |
| Return | web\wwwroot\ws\java\fmea\AddFailureControlResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDFAILURECTRL | X | Failure control ID #. |
| NMFAILURECTRL | X | Failure control name. |
| FGTYPEFMEA | X | FMEA type: 1 - Project; 2 - Process. |
| DSFAILURECTRL | Failure control description. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fmea">
<soapenv:Header/>
<soapenv:Body>
<urn:addFailureControl>
<!--You may enter the following 4 items in any order-->
<urn:IDFAILURECTRL>?</urn:IDFAILURECTRL>
<urn:NMFAILURECTRL>?</urn:NMFAILURECTRL>
<urn:FGTYPEFMEA>?</urn:FGTYPEFMEA>
<urn:DSFAILURECTRL>?</urn:DSFAILURECTRL>
</urn:addFailureControl>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| Status | SUCCESS or FAILURE. |
| Code | Success (1) or Failure (-1). |
| Detail | Message about insertion/editing or error found. |