DBA Data[Home] [Help]

APPS.PO_APPROVAL_REMINDER_SV dependencies on WF_PURGE

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

194: -- Call workflow to remove the completed process
195:
196: --
197: --Force item purge even if an active child process exists.
198: WF_PURGE.ITEMS (itemtype => l_ItemType,
199: itemkey => l_Itemkey,
200: enddate => SYSDATE,
201: docommit => true, --
202: force => true); --

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

384: -- Call workflow to remove the completed process
385:
386: --
387: --Force item purge even if an active child process exists.
388: WF_PURGE.ITEMS (itemtype => l_ItemType,
389: itemkey => l_Itemkey,
390: enddate => SYSDATE,
391: docommit => true, --
392: force => true); --

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

576: -- Call workflow to remove the completed process
577:
578: --
579: --Force item purge even if an active child process exists.
580: WF_PURGE.ITEMS (itemtype => l_ItemType,
581: itemkey => l_Itemkey,
582: enddate => SYSDATE,
583: docommit => true, --
584: force => true); --

Line 795: WF_PURGE.ITEMS (l_ItemType,

791: l_doc_header_id,
792: NULL);
793: -- bug 3896181
794:
795: WF_PURGE.ITEMS (l_ItemType,
796: l_itemkey,
797: SYSDATE,
798: true,
799: true);

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

832: -- bug 3896181
833: --
834: --Force item purge even if an active child process exists.
835:
836: WF_PURGE.ITEMS (itemtype => l_ItemType,
837: itemkey => l_Itemkey,
838: enddate => SYSDATE,
839: docommit => true, --
840: force => true); --

Line 869: WF_PURGE.ITEMS (l_ItemType,

865: END IF;
866: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
867: l_doc_header_id,
868: NULL);
869: WF_PURGE.ITEMS (l_ItemType,
870: l_itemkey,
871: SYSDATE,
872: true,
873: true);

Line 928: WF_PURGE.ITEMS (l_ItemType,

924: END IF;
925: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
926: l_doc_header_id,
927: NULL);
928: WF_PURGE.ITEMS (l_ItemType,
929: l_itemkey,
930: SYSDATE,
931: true,
932: true);

Line 1152: WF_PURGE.ITEMS (l_ItemType,

1148: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1149: l_doc_header_id,
1150: NULL);
1151: --bug 3896181
1152: WF_PURGE.ITEMS (l_ItemType,
1153: l_itemkey,
1154: SYSDATE,
1155: true,
1156: true);

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

1194: --bug 3896181
1195:
1196: --
1197: --Force item purge even if an active child process exists.
1198: WF_PURGE.ITEMS (itemtype => l_ItemType,
1199: itemkey => l_Itemkey,
1200: enddate => SYSDATE,
1201: docommit => true, --
1202: force => true); --

Line 1231: WF_PURGE.ITEMS (l_ItemType,

1227: END IF;
1228: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1229: l_doc_header_id,
1230: NULL);
1231: WF_PURGE.ITEMS (l_ItemType,
1232: l_itemkey,
1233: SYSDATE,
1234: true,
1235: true);

Line 1279: WF_PURGE.ITEMS (l_ItemType,

1275: END IF;
1276: PO_APPROVAL_REMINDER_SV.Cancel_Notif (l_doc_type,
1277: l_doc_header_id,
1278: NULL);
1279: WF_PURGE.ITEMS (l_ItemType,
1280: l_itemkey,
1281: SYSDATE,
1282: true,
1283: true);

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

2988: -- Bug 3593182: Removed the item exists condition before
2989: -- the purge as purge only purges existing items
2990: --
2991: --Force item purge even if an active child process exists.
2992: WF_PURGE.ITEMS (itemtype => l_ItemType,
2993: itemkey => l_Itemkey,
2994: enddate => SYSDATE,
2995: docommit => true, --
2996: force => true); --

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

3028: -- the purge as purge only purges existing items
3029:
3030: --
3031: --Force item purge even if an active child process exists.
3032: WF_PURGE.ITEMS (itemtype => l_ItemType,
3033: itemkey => l_Itemkey,
3034: enddate => SYSDATE,
3035: docommit => true, --
3036: force => true); --

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

3051: -- Bug 3593182: Removed the item exists condition before
3052: -- the purge as purge only purges existing items
3053: --
3054: --Force item purge even if an active child process exists.
3055: WF_PURGE.ITEMS (itemtype => l_ItemType,
3056: itemkey => l_Itemkey,
3057: enddate => SYSDATE,
3058: docommit => true, --
3059: force => true); --

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

3074: -- Bug 3593182: Removed the item exists condition before
3075: -- the purge as purge only purges existing items
3076: --
3077: --Force item purge even if an active child process exists.
3078: WF_PURGE.ITEMS (itemtype => l_ItemType,
3079: itemkey => l_Itemkey,
3080: enddate => SYSDATE,
3081: docommit => true, --
3082: force => true); --

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

3485:
3486: -- Purge the process so we can re-use the item key.
3487: --
3488: --Force item purge even if an active child process exists.
3489: WF_PURGE.ITEMS (itemtype => g_reminder_item_type,
3490: itemkey => l_item_key,
3491: enddate => SYSDATE,
3492: docommit => true, --
3493: force => true); --