DBA Data[Home] [Help]

PACKAGE: APPS.PER_APT_INS

Source


1 Package per_apt_ins AUTHID CURRENT_USER as
2 /* $Header: peaptrhi.pkh 120.5 2010/02/09 15:10:40 psugumar ship $ */
3 --
4 --
5 -- ----------------------------------------------------------------------------
6 -- |------------------------< set_base_key_value >----------------------------|
7 -- ----------------------------------------------------------------------------
8 -- {Start of Comments}
9 -- Description:
10 --   This procedure is called to register the next ID value from the database
11 --   sequence.
12 --
13 -- Prerequisites:
14 --
15 -- In Parameters:
16 --   Primary Key
17 --
18 -- Post Success:
19 --
20 -- Post Failure:
21 --
22 -- Developer Implementation Notes:
23 --   None.
24 --
25 -- Access Status:
26 --   Internal Development Use Only.
27 --
28 -- {End of Comments}
29 -- ----------------------------------------------------------------------------
30 procedure set_base_key_value
31   (p_appraisal_template_id  in  number);
32 --
33 -- ----------------------------------------------------------------------------
34 -- ----------------------------------------------------------------------------
35 -- |---------------------------------< ins >----------------------------------|
36 -- ----------------------------------------------------------------------------
37 -- {Start Of Comments}
38 --
39 -- Description:
40 --   This procedure is the record interface for the insert process
41 --   for the specified entity. The role of this process is to insert a fully
42 --   validated row, into the HR schema passing back to  the calling process,
43 --   any system generated values (e.g. primary and object version number
44 --   attributes). This process is the main backbone of the ins
45 --   process. The processing of this procedure is as follows:
46 --   1) If the p_validate parameter has been set to true then a savepoint is
47 --      issued.
48 --   2) The controlling validation process insert_validate is then executed
49 --      which will execute all private and public validation business rule
50 --      processes.
51 --   3) The pre_insert business process is then executed which enables any
52 --      logic to be processed before the insert dml process is executed.
53 --   4) The insert_dml process will physical perform the insert dml into the
54 --      specified entity.
55 --   5) The post_insert business process is then executed which enables any
56 --      logic to be processed after the insert dml process.
57 --   6) If the p_validate parameter has been set to true an exception is
58 --      raised which is handled and processed by performing a rollback to the
59 --      savepoint which was issued at the beginning of the Ins process.
60 --
61 -- Pre Conditions:
62 --   The main parameters to the this process have to be in the record
63 --   format.
64 --
65 -- In Parameters:
66 --   p_validate
67 --     Determines if the process is to be validated. Setting this
68 --     boolean value to true will invoke the process to be validated. The
69 --     default is false. The validation is controlled by a savepoint and
70 --     rollback mechanism. The savepoint is issued at the beginning of the
71 --     process and is rollbacked at the end of the process
72 --     when all the processing has been completed. The rollback is controlled
73 --     by raising and handling the exception hr_api.validate_enabled. We use
74 --     the exception because, by raising the exception with the business
75 --     process, we can exit successfully without having any of the 'OUT'
76 --     parameters being set.
77 --
78 -- Post Success:
79 --   A fully validated row will be inserted into the specified entity
80 --   without being committed. If the p_validate parameter has been set to true
81 --   then all the work will be rolled back.
82 --
83 -- Post Failure:
84 --   If an error has occurred, an error message will be supplied with the work
85 --   rolled back.
86 --
87 -- Developer Implementation Notes:
88 --   None.
89 --
90 -- Access Status:
91 --   Internal Development Use Only.
92 --
93 -- {End Of Comments}
94 -- ----------------------------------------------------------------------------
95 Procedure ins
96   (
97   p_rec        		in out nocopy per_apt_shd.g_rec_type,
98   p_effective_date 	in date,
99   p_validate   		in boolean default false
100   );
101 --
102 -- ----------------------------------------------------------------------------
103 -- |---------------------------------< ins >----------------------------------|
104 -- ----------------------------------------------------------------------------
105 -- {Start Of Comments}
106 --
107 -- Description:
108 --   This procedure is the attribute interface for the insert
109 --   process for the specified entity and is the outermost layer. The role
110 --   of this process is to insert a fully validated row into the HR schema
111 --   passing back to the calling process, any system generated values
112 --   (e.g. object version number attributes).The processing of this
113 --   procedure is as follows:
114 --   1) The attributes are converted into a local record structure by
115 --      calling the convert_args function.
116 --   2) After the conversion has taken place, the corresponding record ins
117 --      interface process is executed.
118 --   3) OUT parameters are then set to their corresponding record attributes.
119 --
120 -- Pre Conditions:
121 --
122 -- In Parameters:
123 --   p_validate
124 --     Determines if the process is to be validated. Setting this
125 --     Boolean value to true will invoke the process to be validated.
126 --     The default is false.
127 --
128 -- Post Success:
129 --   A fully validated row will be inserted for the specified entity
130 --   without being committed (or rollbacked depending on the p_validate
131 --   status).
132 --
133 -- Post Failure:
134 --   If an error has occurred, an error message will be supplied with the work
135 --   rolled back.
136 --
137 -- Developer Implementation Notes:
138 --   None.
139 --
140 -- Access Status:
141 --   Internal Development Use Only.
142 --
143 -- {End Of Comments}
144 -- ----------------------------------------------------------------------------
145 Procedure ins
146   (
147   p_appraisal_template_id        out nocopy number,
148   p_business_group_id            in number,
149   p_object_version_number        out nocopy number,
150   p_name                         in varchar2,
151   p_description                  in varchar2         default null,
152   p_instructions                 in varchar2         default null,
153   p_date_from                    in date             default null,
154   p_date_to                      in date             default null,
155   p_assessment_type_id           in number           default null,
156   p_rating_scale_id              in number           default null,
157   p_questionnaire_template_id    in number           default null,
158   p_attribute_category           in varchar2         default null,
159   p_attribute1                   in varchar2         default null,
160   p_attribute2                   in varchar2         default null,
161   p_attribute3                   in varchar2         default null,
162   p_attribute4                   in varchar2         default null,
163   p_attribute5                   in varchar2         default null,
164   p_attribute6                   in varchar2         default null,
165   p_attribute7                   in varchar2         default null,
166   p_attribute8                   in varchar2         default null,
167   p_attribute9                   in varchar2         default null,
168   p_attribute10                  in varchar2         default null,
169   p_attribute11                  in varchar2         default null,
170   p_attribute12                  in varchar2         default null,
171   p_attribute13                  in varchar2         default null,
172   p_attribute14                  in varchar2         default null,
173   p_attribute15                  in varchar2         default null,
174   p_attribute16                  in varchar2         default null,
175   p_attribute17                  in varchar2         default null,
176   p_attribute18                  in varchar2         default null,
177   p_attribute19                  in varchar2         default null,
178   p_attribute20                  in varchar2         default null
179   ,p_objective_asmnt_type_id        in     number   default null
180   ,p_ma_quest_template_id           in     number   default null
181   ,p_link_appr_to_learning_path     in     varchar2 default null
182   ,p_final_score_formula_id         in     number   default null
183   ,p_update_personal_comp_profile   in     varchar2 default null
184   ,p_comp_profile_source_type       in     varchar2 default null
185   ,p_show_competency_ratings        in     varchar2 default null
186   ,p_show_objective_ratings         in     varchar2 default null
187   ,p_show_overall_ratings           in     varchar2 default null
188   ,p_show_overall_comments          in     varchar2 default null
189   ,p_provide_overall_feedback       in     varchar2 default null
190   ,p_show_participant_details       in     varchar2 default null
191   ,p_allow_add_participant          in     varchar2 default null
192   ,p_show_additional_details        in     varchar2 default null
193   ,p_show_participant_names         in     varchar2 default null
194   ,p_show_participant_ratings       in     varchar2 default null
195   ,p_available_flag                 in     varchar2 default null
196   ,p_show_questionnaire_info        in varchar2 default null,
197   p_effective_date		 in date
198   ,p_ma_off_template_code			      in     varchar2	  default null
199   ,p_appraisee_off_template_code	  in     varchar2	  default null
200   ,p_other_part_off_template_code	  in     varchar2	  default null
201   ,p_part_app_off_template_code	    in     varchar2	  default null
202   ,p_part_rev_off_template_code	    in     varchar2	  default null
203   ,p_validate                     in boolean   default false
204   ,p_show_participant_comments     in varchar2            default null  -- 8651478 bug fix
205 
206   ,p_show_term_employee            in varchar2            default null  -- 6181267 bug fix
207   ,p_show_term_contigent           in varchar2            default null  -- 6181267 bug fix
208   ,p_disp_term_emp_period_from     in     number            default null  -- 6181267 bug fix
209   ,p_SHOW_FUTURE_TERM_EMPLOYEE          in varchar2            default null  -- 6181267 bug fix
210 
211   );
212 --
213 end per_apt_ins;