DBA Data[Home] [Help]

PACKAGE: APPS.WF_HA_MIGRATION

Source


1 PACKAGE WF_HA_MIGRATION AS
2 /* $Header: WFHAMIGS.pls 120.2 2005/10/18 12:47:45 mfisher ship $ */
3 
4 
5 --
6 -- Procedure
7 --   RESET_HA_FLAGS
8 --
9 -- Purpose
10 --   Resets the Migration Flags on WF_ITEMS.  Performs Commit.
11 --
12 -- Arguments: None
13 --
14 Procedure RESET_HA_FLAGS(errbuf out nocopy varchar2, retcode out nocopy number);
15 
16 --
17 -- Procedure
18 --   SET_HA_FLAG
19 --
20 -- Purpose
21 --   Sets the Migration Flag on WF_ITEMS for a particular item.
22 --
23 -- Arguments:
24 --   Item_Type, Item_Key
25 --
26 Procedure SET_HA_FLAG(x_item_type in varchar2, x_item_key in varchar2);
27 
28 
29 --
30 -- Function
31 --   GET_HA_MAINT_MODE
32 --
33 -- Purpose
34 --   Returns the Current High Availability Maintenance Mode.
35 --
36 -- Arguments: None
37 --
38 FUNCTION GET_HA_MAINT_MODE return varchar2;
39 
40 
41 --
42 -- Function
43 --   GET_CACHED_HA_MAINT_MODE
44 --
45 -- Purpose
46 --   Returns the Cacched High Availability Maintenance Mode if available,
47 --   other wise the current one.
48 --
49 -- Arguments: None
50 --
51 FUNCTION GET_CACHED_HA_MAINT_MODE return varchar2;
52 
53 
54 --
55 -- Procedure
56 --   Export Items
57 --
58 -- Purpose
59 --   Shipped updated items from WF_ITEMS and associated tables to the
60 --   maintanence system...continues until no more txns being processed on old
61 --   system, and no more backlog to process.
62 --
63 -- Arguments: None
64 --
65 PROCEDURE EXPORT_ITEMS(errbuf out nocopy varchar2, retcode out nocopy number);
66 
67 --
68 -- Procedure
69 --   FixSubscriptions
70 --
71 -- Purpose
72 --   Shipped updated items from WF_ITEMS and associated tables to the
73 --   maintanence system...continues until no more txns being processed on old
74 --   system, and no more backlog to process.
75 --
76 -- Arguments:
77 --	WF_Schema in varchar2 - Schema for FND.
78 --	Clone_DBLink in varchar2 - DBLink for cloned DB.
79 --
80 PROCEDURE FixSubscriptions(WF_Schema in varchar2 default 'APPLSYS', Clone_DBLink in varchar2);
81 
82 END WF_HA_MIGRATION;