addRequirements
This method allows adding/editing:
- Requirement data.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\fmea\AddRequirementsRequestType.java |
Return | web\wwwroot\ws\java\fmea\AddRequirementsResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDREQUIREMENTS | X | Requirement ID #. |
NMREQUIREMENTS | X | Requirement name. |
FGTYPEFMEA | X | FMEA type: 1 - Project; 2 - Process; 3 - Asset; 4 - Project schedule; 5 - Object. |
DSREQUIREMENTS | Requirement description. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fmea">
<soapenv:Header/>
<soapenv:Body>
<urn:addRequirements>
<!--You may enter the following 4 items in any order-->
<urn:IDREQUIREMENTS>?</urn:IDREQUIREMENTS>
<urn:NMREQUIREMENTS>?</urn:NMREQUIREMENTS>
<urn:FGTYPEFMEA>?</urn:FGTYPEFMEA>
<urn:DSREQUIREMENTS>?</urn:DSREQUIREMENTS>
</urn:addRequirements>
</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. |