DBA Data[Home] [Help]

PACKAGE: APPS.AME_APT_INS

Source


1 Package ame_apt_ins AUTHID CURRENT_USER as
2 /* $Header: amaptrhi.pkh 120.1 2006/04/21 08:43 avarri noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< set_base_key_value >----------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of Comments}
7 -- Description:
8 --   This procedure is called to register the next ID value from the database
9 --   sequence.
10 --
11 -- Prerequisites:
12 --
13 -- In Parameters:
14 --   Primary Key
15 --
16 -- Post Success:
17 --
18 -- Post Failure:
19 --
20 -- Developer Implementation Notes:
21 --   None.
22 --
23 -- Access Status:
24 --   Internal Development Use Only.
25 --
26 -- {End of Comments}
27 -- ----------------------------------------------------------------------------
28 procedure set_base_key_value
29   (p_approver_type_id  in  number);
30 --
31 -- ----------------------------------------------------------------------------
32 -- |------------------------------< insert_dml >------------------------------|
33 -- ----------------------------------------------------------------------------
34 -- {Start Of Comments}
35 --
36 -- Description:
37 --   This procedure calls the dt_insert_dml control logic which handles
38 --   the actual datetrack dml.
39 --
40 -- Prerequisites:
41 --   This is an internal private procedure which must be called from the ins
42 --   procedure and must have all mandatory attributes set (except the
43 --   object_version_number which is initialised within the dt_insert_dml
44 --   procedure).
45 --
46 -- In Parameters:
47 --   A Pl/Sql record structure.
48 --
49 -- Post Success:
50 --   Processing contines.
51 --
52 -- Post Failure:
53 --   No specific error handling is required within this procedure.
54 --
55 -- Developer Implementation Notes:
56 --   None.
57 --
58 -- Access Status:
59 --   Internal Row Handler Use Only.
60 --
61 -- {End Of Comments}
62 -- ----------------------------------------------------------------------------
63 Procedure insert_dml
64   (p_rec                   in out nocopy  ame_apt_shd.g_rec_type
65   ,p_effective_date        in             date
66   ,p_datetrack_mode        in             varchar2
67   ,p_validation_start_date in             date
68   ,p_validation_end_date   in             date
69   );
70 --
71 --
72 -- ----------------------------------------------------------------------------
73 -- |---------------------------------< ins >----------------------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start Of Comments}
76 --
77 -- Description:
78 --   This procedure is the record interface for the insert process
79 --   for the specified entity. The role of this process is to insert a fully
80 --   validated row, into the HR schema passing back to  the calling process,
81 --   any system generated values (e.g. primary and object version number
82 --   attributes). This process is the main backbone of the ins business
83 --   process. The processing of this procedure is as follows:
84 --   1) We must lock parent rows (if any exist).
85 --   2) The controlling validation process insert_validate is then executed
86 --      which will execute all private and public validation business rule
87 --      processes.
88 --   3) The pre_insert process is then executed which enables any
89 --      logic to be processed before the insert dml process is executed.
90 --   4) The insert_dml process will physical perform the insert dml into the
91 --      specified entity.
92 --   5) The post_insert process is then executed which enables any
93 --      logic to be processed after the insert dml process.
94 --
95 -- Prerequisites:
96 --   The main parameters to the process have to be in the record
97 --   format.
98 --
99 -- In Parameters:
100 --   p_effective_date
101 --    Specifies the date of the datetrack insert operation.
102 --
103 -- Post Success:
104 --   A fully validated row will be inserted into the specified entity
105 --   without being committed.
106 --
107 -- Post Failure:
108 --   If an error has occurred, an error message will be raised.
109 --
110 -- Developer Implementation Notes:
111 --   None.
112 --
113 -- Access Status:
114 --   Internal Development Use Only.
115 --
116 -- {End Of Comments}
117 -- ----------------------------------------------------------------------------
118 Procedure ins
119   (p_effective_date in     date
120   ,p_rec            in out nocopy ame_apt_shd.g_rec_type
121   );
122 --
123 --
124 -- ----------------------------------------------------------------------------
125 -- |---------------------------------< ins >----------------------------------|
126 -- ----------------------------------------------------------------------------
127 -- {Start Of Comments}
128 --
129 -- Description:
130 --   This procedure is the attribute interface for the insert
131 --   process for the specified entity and is the outermost layer. The role
132 --   of this process is to insert a fully validated row into the HR schema
133 --   passing back to the calling process, any system generated values
134 --   (e.g. object version number attributes). The processing of this
135 --   procedure is as follows:
136 --   1) The attributes are converted into a local record structure by
137 --      calling the convert_args function.
138 --   2) After the conversion has taken place, the corresponding record ins
139 --      interface process is executed.
140 --   3) OUT parameters are then set to their corresponding record attributes.
141 --
142 -- Prerequisites:
143 --
144 -- In Parameters:
145 --   p_effective_date
146 --    Specifies the date of the datetrack insert operation.
147 --
148 -- Post Success:
149 --   A fully validated row will be inserted for the specified entity
150 --   without being committed.
151 --
152 -- Post Failure:
153 --   If an error has occurred, an error message will be raised.
154 --
155 -- Developer Implementation Notes:
156 --   None.
157 --
158 -- Access Status:
159 --   Internal Development Use Only.
160 --
161 -- {End Of Comments}
162 -- ----------------------------------------------------------------------------
163 Procedure ins
164   (p_effective_date                 in           date
165   ,p_orig_system                    in           varchar2
166   ,p_query_variable_1_label         in           varchar2 default null
167   ,p_query_variable_2_label         in           varchar2 default null
168   ,p_query_variable_3_label         in           varchar2 default null
169   ,p_query_variable_4_label         in           varchar2 default null
170   ,p_query_variable_5_label         in           varchar2 default null
171   ,p_variable_1_lov_query           in           varchar2 default null
172   ,p_variable_2_lov_query           in           varchar2 default null
173   ,p_variable_3_lov_query           in           varchar2 default null
174   ,p_variable_4_lov_query           in           varchar2 default null
175   ,p_variable_5_lov_query           in           varchar2 default null
176   ,p_query_procedure                in           varchar2 default null
177   ,p_approver_type_id               out nocopy   number
178   ,p_start_date                     out nocopy   date
179   ,p_end_date                       out nocopy   date
180   ,p_object_version_number          out nocopy   number
181   );
182 --
183 end ame_apt_ins;