DBA Data[Home] [Help]

APPS.WF_LOAD dependencies on WF_PURGE

Line 2437: Wf_Purge.persistence_type := l_persistence_type;

2433: return;
2434: end if;
2435:
2436: -- Set what persistence type to purge first
2437: Wf_Purge.persistence_type := l_persistence_type;
2438:
2439: -- Purge obsolete and unused activities in this itemtype.
2440: -- This is to give some hope of being able to delete the itemtype
2441: -- if it is really no longer in use, without interference from

Line 2443: Wf_Purge.Activities(itemtype => x_name);

2439: -- Purge obsolete and unused activities in this itemtype.
2440: -- This is to give some hope of being able to delete the itemtype
2441: -- if it is really no longer in use, without interference from
2442: -- obsolete activity versions.
2443: Wf_Purge.Activities(itemtype => x_name);
2444:
2445: -- Delete item attributes
2446: Delete_Item_Attributes(x_name, x_level_error);
2447:

Line 2796: Wf_Purge.persistence_type := l_persistence_type;

2792: into l_persistence_type
2793: from WF_ITEM_TYPES
2794: where NAME = x_item_type;
2795:
2796: Wf_Purge.persistence_type := l_persistence_type;
2797:
2798: -- Purge obsolete and unused versions of the activity
2799: Wf_Purge.Activities(
2800: itemtype => x_item_type,

Line 2799: Wf_Purge.Activities(

2795:
2796: Wf_Purge.persistence_type := l_persistence_type;
2797:
2798: -- Purge obsolete and unused versions of the activity
2799: Wf_Purge.Activities(
2800: itemtype => x_item_type,
2801: name => x_name);
2802:
2803: exception