Skip to main content
Version: 2.2.1

editEntityRecord

This method edits a record of the workflow form table. To use it, it is necessary to follow the standard documented below:

Java class
Requestweb\wwwroot\ws\java\workflow\EditEntityRecordRequestType.java
Returnweb\wwwroot\ws\java\workflow\EditEntityRecordResponseType.java

Request:

ID #RequiredDescription
WorkflowIDXWorkflow ID #
EntityIDXForm table ID #
EntityAttributeIDForm table attribute ID #
EntityAttributeValueForm table attribute value.
Notes according to the attribute type:
â–ª Number: numeric digits without thousand and decimal separators
â–ª Decimal: numeric digits without thousand separator and with period (.) as decimal separator
â–ª Date: YYYY-MM-DD
â–ª Time: HH:MM
â–ª Boolean: 0 or 1
RelationshipIDRelationship ID #
RelationshipAttributeIDAttribute ID # of the related form table
RelationshipAttributeValueAttribute value of related form table.
Notes according to the attribute type:
â–ª Number: numeric digits without thousand and decimal separators
â–ª Decimal: numeric digits without thousand separator and with period (.) as decimal separator
â–ª Date: YYYY-MM-DD
â–ª Time: HH:MM
â–ª Boolean: 0 or 1
FileNameFile name
FileContentContent encoded with Base64

Request structure:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:editEntityRecord>
<!--You may enter the following 5 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:EntityID>?</urn:EntityID>
<!--Optional:-->
<urn:EntityAttributeList>
<!--Zero or more repetitions:-->
<urn:EntityAttribute>
<!--You may enter the following 2 items in any order-->
<urn:EntityAttributeID>?</urn:EntityAttributeID>
<urn:EntityAttributeValue>?</urn:EntityAttributeValue>
</urn:EntityAttribute>
</urn:EntityAttributeList>
<!--Optional:-->
<urn:RelationshipList>
<!--Zero or more repetitions:-->
<urn:Relationship>
<urn:RelationshipID>?</urn:RelationshipID>
<!--1 or more repetitions:-->
<urn:RelationshipAttribute>
<!--You may enter the following 2 items in any order-->
<urn:RelationshipAttributeID>?</urn:RelationshipAttributeID>
<urn:RelationshipAttributeValue>?</urn:RelationshipAttributeValue>
</urn:RelationshipAttribute>
</urn:Relationship>
</urn:RelationshipList>
<!--Optional:-->
<urn:EntityAttributeFileList>
<!--Zero or more repetitions:-->
<urn:EntityAttributeFile>
<!--You may enter the following 3 items in any order-->
<urn:EntityAttributeID>?</urn:EntityAttributeID>
<urn:FileName>?</urn:FileName>
<urn:FileContent>cid:399494657558</urn:FileContent>
</urn:EntityAttributeFile>
</urn:EntityAttributeFileList>
</urn:editEntityRecord>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
StatusMethod execution status. Its value may be:
SUCCESS: Method executed successfully
FAILURE: An error occurred during the method execution
CodeMethod return code
DetailMethod return detail