DBA Data[Home] [Help]

APPS.PO_APPROVAL_REMINDER_SV dependencies on WF_PURGE

Line 186: WF_PURGE.ITEMS (itemtype => l_ItemType,

182: -- Call workflow to remove the completed process
183:
184: --
185: --Force item purge even if an active child process exists.
186: WF_PURGE.ITEMS (itemtype => l_ItemType,
187: itemkey => l_Itemkey,
188: enddate => SYSDATE,
189: docommit => true, --
190: force => true); --

Line 376: WF_PURGE.ITEMS (itemtype => l_ItemType,

372: -- Call workflow to remove the completed process
373:
374: --
375: --Force item purge even if an active child process exists.
376: WF_PURGE.ITEMS (itemtype => l_ItemType,
377: itemkey => l_Itemkey,
378: enddate => SYSDATE,
379: docommit => true, --
380: force => true); --

Line 568: WF_PURGE.ITEMS (itemtype => l_ItemType,

564: -- Call workflow to remove the completed process
565:
566: --
567: --Force item purge even if an active child process exists.
568: WF_PURGE.ITEMS (itemtype => l_ItemType,
569: itemkey => l_Itemkey,
570: enddate => SYSDATE,
571: docommit => true, --
572: force => true); --

Line 783: WF_PURGE.ITEMS (l_ItemType,

779: l_doc_header_id,
780: NULL);
781: -- bug 3896181
782:
783: WF_PURGE.ITEMS (l_ItemType,
784: l_itemkey,
785: SYSDATE,
786: true,
787: true);

Line 824: WF_PURGE.ITEMS (itemtype => l_ItemType,

820: -- bug 3896181
821: --
822: --Force item purge even if an active child process exists.
823:
824: WF_PURGE.ITEMS (itemtype => l_ItemType,
825: itemkey => l_Itemkey,
826: enddate => SYSDATE,
827: docommit => true, --
828: force => true); --

Line 857: WF_PURGE.ITEMS (l_ItemType,

853: END IF;
854: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
855: l_doc_header_id,
856: NULL);
857: WF_PURGE.ITEMS (l_ItemType,
858: l_itemkey,
859: SYSDATE,
860: true,
861: true);

Line 899: WF_PURGE.ITEMS (l_ItemType,

895: END IF;
896: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
897: l_doc_header_id,
898: NULL);
899: WF_PURGE.ITEMS (l_ItemType,
900: l_itemkey,
901: SYSDATE,
902: true,
903: true);

Line 1123: WF_PURGE.ITEMS (l_ItemType,

1119: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1120: l_doc_header_id,
1121: NULL);
1122: --bug 3896181
1123: WF_PURGE.ITEMS (l_ItemType,
1124: l_itemkey,
1125: SYSDATE,
1126: true,
1127: true);

Line 1169: WF_PURGE.ITEMS (itemtype => l_ItemType,

1165: --bug 3896181
1166:
1167: --
1168: --Force item purge even if an active child process exists.
1169: WF_PURGE.ITEMS (itemtype => l_ItemType,
1170: itemkey => l_Itemkey,
1171: enddate => SYSDATE,
1172: docommit => true, --
1173: force => true); --

Line 1202: WF_PURGE.ITEMS (l_ItemType,

1198: END IF;
1199: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1200: l_doc_header_id,
1201: NULL);
1202: WF_PURGE.ITEMS (l_ItemType,
1203: l_itemkey,
1204: SYSDATE,
1205: true,
1206: true);

Line 1250: WF_PURGE.ITEMS (l_ItemType,

1246: END IF;
1247: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1248: l_doc_header_id,
1249: NULL);
1250: WF_PURGE.ITEMS (l_ItemType,
1251: l_itemkey,
1252: SYSDATE,
1253: true,
1254: true);

Line 2958: WF_PURGE.ITEMS (itemtype => l_ItemType,

2954: -- Bug 3593182: Removed the item exists condition before
2955: -- the purge as purge only purges existing items
2956: --
2957: --Force item purge even if an active child process exists.
2958: WF_PURGE.ITEMS (itemtype => l_ItemType,
2959: itemkey => l_Itemkey,
2960: enddate => SYSDATE,
2961: docommit => true, --
2962: force => true); --

Line 2998: WF_PURGE.ITEMS (itemtype => l_ItemType,

2994: -- the purge as purge only purges existing items
2995:
2996: --
2997: --Force item purge even if an active child process exists.
2998: WF_PURGE.ITEMS (itemtype => l_ItemType,
2999: itemkey => l_Itemkey,
3000: enddate => SYSDATE,
3001: docommit => true, --
3002: force => true); --

Line 3021: WF_PURGE.ITEMS (itemtype => l_ItemType,

3017: -- Bug 3593182: Removed the item exists condition before
3018: -- the purge as purge only purges existing items
3019: --
3020: --Force item purge even if an active child process exists.
3021: WF_PURGE.ITEMS (itemtype => l_ItemType,
3022: itemkey => l_Itemkey,
3023: enddate => SYSDATE,
3024: docommit => true, --
3025: force => true); --

Line 3044: WF_PURGE.ITEMS (itemtype => l_ItemType,

3040: -- Bug 3593182: Removed the item exists condition before
3041: -- the purge as purge only purges existing items
3042: --
3043: --Force item purge even if an active child process exists.
3044: WF_PURGE.ITEMS (itemtype => l_ItemType,
3045: itemkey => l_Itemkey,
3046: enddate => SYSDATE,
3047: docommit => true, --
3048: force => true); --

Line 3455: WF_PURGE.ITEMS (itemtype => g_reminder_item_type,

3451:
3452: -- Purge the process so we can re-use the item key.
3453: --
3454: --Force item purge even if an active child process exists.
3455: WF_PURGE.ITEMS (itemtype => g_reminder_item_type,
3456: itemkey => l_item_key,
3457: enddate => SYSDATE,
3458: docommit => true, --
3459: force => true); --