deleteChildEntityRecord
This method deletes a record 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\DeleteChildEntityRecordRequestType.java |
Return | web\wwwroot\ws\java\workflow\DeleteChildEntityRecordResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Workflow ID # |
MainEntityID | X | Main form table ID # |
ChildRelationshipID | X | Lower level form table relationship ID # |
ChildRecordOID | X | Code of the record related to the lower level form table |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:deleteChildEntityRecord>
<!--You may enter the following 4 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:MainEntityID>?</urn:MainEntityID>
<urn:ChildRelationshipID>?</urn:ChildRelationshipID>
<urn:ChildRecordOID>?</urn:ChildRecordOID>
</urn:deleteChildEntityRecord>
</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 |