DBA Data[Home] [Help]

PACKAGE: APPS.AD_PATCH_HISTORY_PKG

Source


1 package ad_patch_history_pkg AUTHID CURRENT_USER as
2 /* $Header: adphmnts.pls 115.4 2002/12/11 23:08:28 wjenkins ship $ */
3 
4 
5 -- PROCEDURE backfill_onsite_versions:
6 -- Walks back in time and fills the onsite-versions of certain actions.
7 --
8 -- If p_min_run_date is null, then it looks at the entire history, otherwise
9 -- only looks at patch runs since p_min_run_date (inclusive).
10 --
11 -- Commits?: Yes
12 --
13 procedure backfill_onsite_versions
14            (p_min_run_date date);
15 
16 
17 -- PROCEDURE bld_cf_repos_using_upload_hist:
18 -- Inserts into AD_CHECK_FILES using information uploaded from applptch.txt.
19 -- Does something ONLY if the checkfile repository is empty AND is some patch
20 -- history information exists.
21 --
22 -- Commits?: Yes
23 --
24 procedure bld_cf_repos_using_upload_hist
25            (anything_inserted out nocopy number);
26 
27 
28 end ad_patch_history_pkg;