DBA Data[Home] [Help]

APPS.WF_LOAD dependencies on WF_PURGE

Line 2438: Wf_Purge.persistence_type := l_persistence_type;

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

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

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

Line 2797: Wf_Purge.persistence_type := l_persistence_type;

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

Line 2800: Wf_Purge.Activities(

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