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 | |
---|---|
Request | web\wwwroot\ws\java\workflow\EditEntityRecordRequestType.java |
Return | web\wwwroot\ws\java\workflow\EditEntityRecordResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Workflow ID # |
EntityID | X | Form table ID # |
EntityAttributeID | Form table attribute ID # | |
EntityAttributeValue | Form 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 | |
RelationshipID | Relationship ID # | |
RelationshipAttributeID | Attribute ID # of the related form table | |
RelationshipAttributeValue | Attribute 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 | |
FileName | File name | |
FileContent | Content 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 |
---|---|
Status | Method execution status. Its value may be: SUCCESS: Method executed successfully FAILURE: An error occurred during the method execution |
Code | Method return code |
Detail | Method return detail |