DBA Data[Home] [Help]

APPS.PA_PURGE_PJR_TXNS dependencies on WF_ENGINE

Line 3670: Wf_Engine.itemstatus ( itemtype => p_item_type,

3666:
3667: -------------------Delete the records from WORKFLOW tables by calling suitable APIs----------------------
3668:
3669: /* Check the item status for the workflow process */
3670: Wf_Engine.itemstatus ( itemtype => p_item_type,
3671: itemkey => l_item_key,
3672: status => l_status,
3673: result => l_result );
3674: /* If the status of the item is ACTIVE, the process need to be aborted before purging */

Line 3677: Wf_Engine.abortprocess ( itemtype => p_item_type,

3673: result => l_result );
3674: /* If the status of the item is ACTIVE, the process need to be aborted before purging */
3675: IF l_status = 'ACTIVE' THEN
3676:
3677: Wf_Engine.abortprocess ( itemtype => p_item_type,
3678: itemkey => l_item_key );
3679: END IF;
3680:
3681: /* Purge the record from workflow tables.*/

Line 3935: Wf_Engine.itemstatus ( itemtype => p_item_type,

3931:
3932: -------------------Delete the records from WORKFLOW tables by calling suitable APIs----------------------
3933:
3934: /* Check the item status for the workflow process */
3935: Wf_Engine.itemstatus ( itemtype => p_item_type,
3936: itemkey => l_item_key,
3937: status => l_status,
3938: result => l_result );
3939: /* If the status of the item is ACTIVE, the process need to be aborted before purging */

Line 3942: Wf_Engine.abortprocess ( itemtype => p_item_type,

3938: result => l_result );
3939: /* If the status of the item is ACTIVE, the process need to be aborted before purging */
3940: IF l_status = 'ACTIVE' THEN
3941:
3942: Wf_Engine.abortprocess ( itemtype => p_item_type,
3943: itemkey => l_item_key );
3944: END IF;
3945:
3946: /* Purge the record from workflow tables.*/

Line 4203: Wf_Engine.itemstatus ( itemtype => 'PARMAAP',

4199:
4200: -------------------Delete the records from WORKFLOW tables by calling suitable APIs----------------------
4201:
4202: /* Check the item status for the workflow process */
4203: Wf_Engine.itemstatus ( itemtype => 'PARMAAP',
4204: itemkey => l_item_key,
4205: status => l_status,
4206: result => l_result );
4207: /* If the status of the item is ACTIVE, the process need to be aborted before purging */

Line 4210: Wf_Engine.abortprocess ( itemtype => 'PARMAAP',

4206: result => l_result );
4207: /* If the status of the item is ACTIVE, the process need to be aborted before purging */
4208: IF l_status = 'ACTIVE' THEN
4209:
4210: Wf_Engine.abortprocess ( itemtype => 'PARMAAP',
4211: itemkey => l_item_key );
4212: END IF;
4213:
4214: /* Purge the record from workflow tables.*/

Line 4388: Wf_Engine.itemstatus ( itemtype => p_item_type,

4384:
4385: -------------------Delete the records from WORKFLOW tables by calling suitable APIs----------------------
4386:
4387: /* Check the item status for the workflow process */
4388: Wf_Engine.itemstatus ( itemtype => p_item_type,
4389: itemkey => l_item_key,
4390: status => l_status,
4391: result => l_result );
4392: /* If the status of the item is ACTIVE, the process need to be aborted before purging */

Line 4395: Wf_Engine.abortprocess ( itemtype => p_item_type,

4391: result => l_result );
4392: /* If the status of the item is ACTIVE, the process need to be aborted before purging */
4393: IF l_status = 'ACTIVE' THEN
4394:
4395: Wf_Engine.abortprocess ( itemtype => p_item_type,
4396: itemkey => l_item_key );
4397: END IF;
4398:
4399: /* Purge the record from workflow tables.*/