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 740: -- Call WF purge API to remove any existing Confirm Receipts WF items

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

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

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

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

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

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

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

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

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

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

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

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

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