Skip to main content
Version: 2.2.1

newChildEntityRecordList

This method adds one or more records to the workflow lower level form table. To use it, it is necessary to follow the standard documented below:

danger
  • The web service supports on average the insertion of 100 records per request. However, the capacity of records processed per request will vary depending on server configurations. The number of table columns also impacts processing.
  • If it is necessary to use numbers higher than the one mentioned in the previous paragraph, we recommend running tests in the test environment before using the resource in the production environment.
Java class
Requestweb\wwwroot\ws\java\workflow\NewChildEntityRecordListRequestType.java
Returnweb\wwwroot\ws\java\workflow\NewChildEntityRecordListResponseType.java

Request:

ID #RequiredDescription
WorkflowIDXWorkflow ID #
MainEntityIDXMain form table ID #
ChildRelationshipIDXLower level form table relationship 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 (with extension)
FileContentBinary content of the file

Request structure:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:newChildEntityRecordList>
<!--You may enter the following 4 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:MainEntityID>?</urn:MainEntityID>
<urn:ChildRelationshipID>?</urn:ChildRelationshipID>
<urn:EntityRecordList>
<!--Zero or more repetitions:-->
<urn:EntityRecord>
<!--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:1487749232293</urn:FileContent>
</urn:EntityAttributeFile>
</urn:EntityAttributeFileList>
</urn:EntityRecord>
</urn:EntityRecordList>
</urn:newChildEntityRecordList>
</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
RecordKeyCode of the record added by the method