DBA Data[Home] [Help]

APPS.PORCPTWF dependencies on WF_PURGE

Line 31: WLAU 2/25/1997 Added WF_PURGE.total to delete

27: it calls the Start_Rcpt_Process to initiate the
28: Confirm Receipt workflow process.
29:
30: CHANGE HISTORY: WLAU 1/15/1997 Created
31: WLAU 2/25/1997 Added WF_PURGE.total to delete
32: the completed WF activities
33: ===========================================================================*/
34:
35: TYPE rcpt_record IS RECORD (

Line 317: WLAU 2/25/1997 Added WF_PURGE.total to delete

313: it calls the Start_Rcpt_Process to initiate the
314: Confirm Receipt workflow process.
315:
316: CHANGE HISTORY: WLAU 1/15/1997 Created
317: WLAU 2/25/1997 Added WF_PURGE.total to delete
318: the completed WF activities
319: ===========================================================================*/
320:
321: PROCEDURE Select_Orders IS

Line 354: -- Call WF purge API to remove any existing Confirm Receipts WF items

350:
351: x_WF_ItemKey := ' ';
352: x_WF_ItemKey_save := ' ';
353:
354: -- Call WF purge API to remove any existing Confirm Receipts WF items
355: -- which are completed with an END_DATE less than or equal to
356: -- SYSDATE (default). This is to ensure that the Selection
357: -- process can start the workflow process for the same item key value.
358: --

Line 359: -- The WF purge API will not remove any WF items which are still

355: -- which are completed with an END_DATE less than or equal to
356: -- SYSDATE (default). This is to ensure that the Selection
357: -- process can start the workflow process for the same item key value.
358: --
359: -- The WF purge API will not remove any WF items which are still
360: -- opened with END_DATE = NULL;
361:
362:
363: WF_PURGE.total ('PORCPT');

Line 363: WF_PURGE.total ('PORCPT');

359: -- The WF purge API will not remove any WF items which are still
360: -- opened with END_DATE = NULL;
361:
362:
363: WF_PURGE.total ('PORCPT');
364:
365: -- Start the Confirm Receipts workflow Selection process
366:
367:

Line 738: -- Call WF purge API to remove any existing Confirm Receipts WF items

734:
735: x_WF_ItemKey := ' ';
736: x_WF_ItemKey_save := ' ';
737:
738: -- Call WF purge API to remove any existing Confirm Receipts WF items
739: -- which are completed with an END_DATE less than or equal to
740: -- SYSDATE (default). This is to ensure that the Selection
741: -- process can start the workflow process for the same item key value.
742: --

Line 743: -- The WF purge API will not remove any WF items which are still

739: -- which are completed with an END_DATE less than or equal to
740: -- SYSDATE (default). This is to ensure that the Selection
741: -- process can start the workflow process for the same item key value.
742: --
743: -- The WF purge API will not remove any WF items which are still
744: -- opened with END_DATE = NULL;
745:
746:
747: WF_PURGE.total ('PORCPT');

Line 747: WF_PURGE.total ('PORCPT');

743: -- The WF purge API will not remove any WF items which are still
744: -- opened with END_DATE = NULL;
745:
746:
747: WF_PURGE.total ('PORCPT');
748:
749: -- Start the Confirm Receipts workflow Selection process
750:
751: if x_allow_inv_dest_receipts is NULL then

Line 2275: -- Call WF purge API to remove any existing Confirm Receipts WF items

2271:
2272: x_WF_ItemKey := ' ';
2273: x_WF_ItemKey_save := ' ';
2274:
2275: -- Call WF purge API to remove any existing Confirm Receipts WF items
2276: -- which are completed with an END_DATE less than or equal to
2277: -- SYSDATE (default). This is to ensure that the Selection
2278: -- process can start the workflow process for the same item key value.
2279: --

Line 2280: -- The WF purge API will not remove any WF items which are still

2276: -- which are completed with an END_DATE less than or equal to
2277: -- SYSDATE (default). This is to ensure that the Selection
2278: -- process can start the workflow process for the same item key value.
2279: --
2280: -- The WF purge API will not remove any WF items which are still
2281: -- opened with END_DATE = NULL;
2282:
2283:
2284: WF_PURGE.total ('PORCPT');

Line 2284: WF_PURGE.total ('PORCPT');

2280: -- The WF purge API will not remove any WF items which are still
2281: -- opened with END_DATE = NULL;
2282:
2283:
2284: WF_PURGE.total ('PORCPT');
2285:
2286:
2287: if x_allow_inv_dest_receipts is NULL then
2288: x_allow_inv_dest_receipts := 'N';

Line 2364: wf_purge.items(itemtype => x_WF_ItemType,

2360: open notifications ; we need to remove the ELSE below since we
2361: need to start_recpt_process for such cases too. **/
2362: if po_revised(x_po_header_id, x_revision_num , x_wf_itemtype,x_WF_ItemKey ) then
2363: --This will abort and purge the process
2364: wf_purge.items(itemtype => x_WF_ItemType,
2365: itemkey => x_WF_ItemKey,
2366: enddate => sysdate,
2367: docommit => true,
2368: force => true);