...
Code Block |
---|
void pccBatchDataBeginWorkorders( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want create a list of work orders |
Info | ||
---|---|---|
| ||
will allow the session context field in the cycle UDR with the stated transaction ID to be populated with a list of work orders. |
...
Code Block |
---|
void pccBatchDataAddWorkorder( long txnId, Workorder data ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context in which a work order should be added. |
| The work order to add. |
Info | ||
---|---|---|
| ||
will add the wo work order for the session context with the transaction ID determined by the txnID variable. |
...
Code Block |
---|
void pccBatchDataBeginWorklog ( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to create a list of work logs. |
Info | ||
---|---|---|
| ||
will create a list of work logs for the session context with the transaction ID given in the TxnId field in the cycle UDR. |
...
Code Block |
---|
void pccBatchDataAddWorklog( long txnId, Worklog data ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to add a work log. |
| The work log you want to add. |
Info | ||
---|---|---|
| ||
will add the wl work order for the session context with the transaction ID determined by the txnID variable. |
...
Code Block |
---|
void pccBatchDataAddWorklogs( long txnId, List<Worklog> data ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to add a list of work logs. |
| The list of work logs you want to add. |
Info | ||
---|---|---|
| ||
will add the logs list with work orders for the session context with the transaction ID determined by the txnID variable. |
...
Code Block |
---|
void pccBatchDataSuspendWorklogs( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which to suspend work logs. |
Info | ||
---|---|---|
| ||
will suspend the work logs for the session context with the transaction ID returned by the |
...
Code Block |
---|
void pccBatchDataResumeWorklogs( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which to resume work logs. |
Info | ||
---|---|---|
| ||
will resume the work logs for the session contexts with the transaction ID given in the TxnId field in the cycle UDR. |
...
Code Block |
---|
list<Workorder> pccBatchDataGetWorkorders( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which to retrieve a list with work orders. |
Returns: | A list with work logs. |
Info | ||
---|---|---|
| ||
will return a list named orders containing the work orders for the session context with the transaction ID given in the TxnId field in the cycle UDR. |
...
Code Block |
---|
list<Worklog> pccBatchDataGetWorklogs( long txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which to retrieve a list with work logs. |
Returns: | A list with work logs. |
Info | ||
---|---|---|
| ||
will return a list named logs containing the work logs for the session context with the transaction ID given in the TxnId field in the cycle UDR. |
...
Code Block |
---|
void pccBatchDataRemove( long >txnId ) |
Parameters
Parameter | Description |
---|---|
| The transaction ID of the session context for which you want to remove the batch |
Info | ||
---|---|---|
| ||
will remove the batch data for the session context with the transaction ID returned by the |
Scroll pagebreak |
---|