Skip to main content
Version: 2.2.1

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
Requestweb\wwwroot\ws\java\fmea\AddFailureControlRequestType.java
Returnweb\wwwroot\ws\java\fmea\AddFailureControlResponseType.java

Request:

ID #RequiredDescription
IDFAILURECTRLXFailure control ID #.
NMFAILURECTRLXFailure control name.
FGTYPEFMEAXFMEA type:
1 - Project;
2 - Process.
DSFAILURECTRLFailure 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
StatusSUCCESS or FAILURE.
CodeSuccess (1) or Failure (-1).
DetailMessage about insertion/editing or error found.