clearChildEntityRecord
This method deletes all related records from the workflow lower level form table. To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web\wwwroot\ws\java\workflow\ClearChildEntityRecordRequestType.java |
Return | web\wwwroot\ws\java\incident\ClearChildEntityRecordResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Workflow ID # |
MainEntityID | X | Main form table ID # |
ChildRelationshipID | X | Lower level form table relationship ID # |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:clearChildEntityRecord>
<!--You may enter the following 3 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:MainEntityID>?</urn:MainEntityID>
<urn:ChildRelationshipID>?</urn:ChildRelationshipID>
</urn:clearChildEntityRecord>
</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 |