Skip to main content
Version: 2.2.1

addFunction

This method allows adding/editing:

  • Function data.

To insert each of these items, it is necessary to follow the standard documented below.

Java class
Requestweb\wwwroot\ws\java\fmea\AddFunctionRequestType.java
Returnweb\wwwroot\ws\java\fmea\AddFunctionResponseType.java

Request:

ID #RequiredDescription
IDFUNCTIONXFunction ID #.
NMFUNCTIONXFunction name.
FGTYPEFMEAXFMEA type:
1 - Project;
2 - Process;
3 - Asset;
4 - Project schedule;
5 - Object.
DSFUNCTIONFunction description.

Request structure:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fmea">
<soapenv:Header/>
<soapenv:Body>
<urn:addFunction>
<!--You may enter the following 4 items in any order-->
<urn:IDFUNCTION>?</urn:IDFUNCTION>
<urn:NMFUNCTION>?</urn:NMFUNCTION>
<urn:FGTYPEFMEA>?</urn:FGTYPEFMEA>
<urn:DSFUNCTION>?</urn:DSFUNCTION>
</urn:addFunction>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
StatusSUCCESS or FAILURE.
CodeSuccess (1) or Failure (-1).
DetailMessage about insertion/editing or error found.