DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PLAN_DESIGN_WIZARD_API

Source


1 package ben_plan_design_wizard_api AUTHID CURRENT_USER as
2 /* $Header: bepdwapi.pkh 120.1 2006/04/11 17:07 ashrivas noship $ */
3 
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< <write_route_and_hierarchy> >--------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 -- Prerequisites:
11 -- In Parameters:
12 --   Name                           Reqd Type     Description
13 -- Post Success:
14 --   Name                           Type     Description
15 -- Post Failure:
16 -- Access Status:
17 --   Internal Development Use Only.
18 
19 procedure write_route_and_hierarchy(p_copy_entity_txn_id in number);
20 
21 -- ----------------------------------------------------------------------------
22 -- |--------------------------< <update_result_rows> >--------------------------|
23 -- ----------------------------------------------------------------------------
24 -- {Start Of Comments}
25 --
26 -- Description:
27 -- Prerequisites:
28 -- In Parameters:
29 --   Name                           Reqd Type     Description
30 -- Post Success:
31 --   Name                           Type     Description
32 -- Post Failure:
33 -- Access Status:
34 --   Internal Development Use Only.
35 
36 procedure update_result_rows(p_copy_entity_txn_id in number);
37 
38 -- ----------------------------------------------------------------------------
39 -- |--------------------------< <delete_entity> >--------------------------|
40 -- ----------------------------------------------------------------------------
41 -- {Start Of Comments}
42 --
43 -- Description:
44 -- Prerequisites:
45 -- In Parameters:
46 --   Name                           Reqd Type     Description
47 -- Post Success:
48 --   Name                           Type     Description
49 -- Post Failure:
50 -- Access Status:
51 --   Internal Development Use Only.
52 
53 
54 procedure delete_entity
55 (p_copy_entity_txn_id in Number
56 ,p_copy_entity_result_id in Number
57 ,p_table_alias in Varchar2
58 );
59 -- ----------------------------------------------------------------------------
60 -- |--------------------------< <delete_Entity> >--------------------------|
61 -- ----------------------------------------------------------------------------
62 -- {Start Of Comments}
63 --
64 -- Description:
65 -- Prerequisites:
66 -- In Parameters:
67 --   Name                           Reqd Type     Description
68 -- Post Success:
69 --   Name                           Type     Description
70 -- Post Failure:
71 -- Access Status:
72 --   Internal Development Use Only.
73 
74 
75 procedure delete_Entity
76 (p_copy_entity_txn_id in Number
77 ,p_copy_entity_result_id in Number
78 ,p_table_alias in Varchar2
79 ,p_top_level_entity in varchar2
80 );
81 
82 -- p_process_validate  0 -- false
83 -- ----------------------------------------------------------------------------
84 -- |--------------------------< <pdw_submit_copy_request> >--------------------------|
85 -- ----------------------------------------------------------------------------
86 -- {Start Of Comments}
87 --
88 -- Description:
89 -- Prerequisites:
90 -- In Parameters:
91 --   Name                           Reqd Type     Description
92 -- Post Success:
93 --   Name                           Type     Description
94 -- Post Failure:
95 -- Access Status:
96 --   Internal Development Use Only.
97 
98 procedure pdw_submit_copy_request(
99   p_process_validate         in  number
100  ,p_copy_entity_txn_id       in  number
101  ,p_request_id               out nocopy number
102  ,p_delete_failed            out nocopy varchar2
103 );
104 
105 -- ----------------------------------------------------------------------------
106 -- |--------------------------< <reuse_deleted_hierarchy> >--------------------------|
107 -- ----------------------------------------------------------------------------
108 -- {Start Of Comments}
109 -- Description:
110 -- Prerequisites:
111 -- In Parameters:
112 --   Name                           Reqd Type     Description
113 -- Post Success:
114 --   Name                           Type     Description
115 -- Post Failure:
116 -- Access Status:
117 --   Internal Development Use Only.
118 
119 procedure reuse_deleted_hierarchy
120 (p_copy_entity_txn_id in number
121  ,p_copy_entity_result_id in number);
122 
123 end ben_plan_design_wizard_api;