The BatchData APL functions are used for managing the work orders and work logs used in the Usage Management Workflow Templates.
The BatchData Support functions include:
Table of Contents maxLevel 1
pccBatchDataBeginWorkorders
This function enables a list with work orders to be created for a session context. When this function has been called, the session context field in the UDR can be populated with the list of work orders.
Code Block |
---|
void pccBatchDataBeginWorkorders( long txnId ) |
...
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to create a list of work orders |
...
This function adds a work order to a session context. In the real-time template, this function is used for adding work orders that have been validated successfully to the session context, for example.
...
This function enables a list with work logs to be created for a session context. When this function has been called, the session context field in the UDR can be populated with the list of work logs.
Code Block |
---|
void pccBatchDataBeginWorklog ( long txnId ) |
...
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to add a work log. |
| The work log logs you want to add. |
Info | ||
---|---|---|
| ||
will add the wl work order for the session context with the transaction ID determined by the txnID variable. |
...
This function adds a list of work logs to a session context. In the real-time template, this function is used for adding work logs for successfully updated work orders to the session context, for example.
...
Resumes the work logs for a session context. This functions function is used after the pccBatchDataSupsendWorklogs
function has been called.
...
This function retrieves a list with of work orders for a certain session context. In the real-time workflow template, this is used for retrieving the list of work orders to compare with the list of work logs, for example.
...
This functions returns a list with work logs for a certain session context. In the real-time workflow template, this is used for retrieving the list of work logs to compare with the list of work orders, for example.
...
This function removes the batch data for a session context. In the real-time workflow template, this function is used for removing all work orders and work logs that have been successfully validated, updated and compared.
...