DBA Data[Home] [Help]

PACKAGE: APPS.PER_RES_INS

Source


1 Package per_res_ins AUTHID CURRENT_USER as
2 /* $Header: peresrhi.pkh 115.2 2003/04/02 13:37:20 eumenyio noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |---------------------------------< ins >----------------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --   This procedure is the record interface for the insert process
11 --   for the specified entity. The role of this process is to insert a fully
12 --   validated row, into the HR schema passing back to  the calling process,
13 --   any system generated values (e.g. primary and object version number
14 --   attributes). This process is the main backbone of the ins
15 --   process. The processing of this procedure is as follows:
16 --   1) The controlling validation process insert_validate is executed
17 --      which will execute all private and public validation business rule
18 --      processes.
19 --   2) The pre_insert business process is then executed which enables any
20 --      logic to be processed before the insert dml process is executed.
21 --   3) The insert_dml process will physical perform the insert dml into the
22 --      specified entity.
23 --   4) The post_insert business process is then executed which enables any
24 --      logic to be processed after the insert dml process.
25 --
26 -- Prerequisites:
27 --   The main parameters to the this process have to be in the record
28 --   format.
29 --
30 -- In Parameters:
31 --
32 -- Post Success:
33 --   A fully validated row will be inserted into the specified entity
34 --   without being committed.
35 --
36 -- Post Failure:
37 --   If an error has occurred, an error message will be raised.
38 --
39 -- Developer Implementation Notes:
40 --   None.
41 --
42 -- Access Status:
43 --   Internal Development Use Only.
44 --
45 -- {End Of Comments}
46 -- ----------------------------------------------------------------------------
47 Procedure ins
48   (p_effective_date               in date
49   ,p_rec                          in out nocopy per_res_shd.g_rec_type
50   );
51 --
52 -- ----------------------------------------------------------------------------
53 -- |---------------------------------< ins >----------------------------------|
54 -- ----------------------------------------------------------------------------
55 -- {Start Of Comments}
56 --
57 -- Description:
58 --   This procedure is the attribute interface for the insert
59 --   process for the specified entity and is the outermost layer. The role
60 --   of this process is to insert a fully validated row into the HR schema
61 --   passing back to the calling process, any system generated values
62 --   (e.g. object version number attributes).The processing of this
63 --   procedure is as follows:
64 --   1) The attributes are converted into a local record structure by
65 --      calling the convert_args function.
66 --   2) After the conversion has taken place, the corresponding record ins
67 --      interface process is executed.
68 --   3) OUT parameters are then set to their corresponding record attributes.
69 --
70 -- Prerequisites:
71 --
72 -- In Parameters:
73 --
74 -- Post Success:
75 --   A fully validated row will be inserted for the specified entity
76 --   without being committed.
77 --
78 -- Post Failure:
79 --   If an error has occurred, an error message will be raised.
80 --
81 -- Developer Implementation Notes:
82 --   None.
83 --
84 -- Access Status:
85 --   Internal Development Use Only.
86 --
87 -- {End Of Comments}
88 -- ----------------------------------------------------------------------------
89 Procedure ins
90   (p_effective_date               in     date
91   ,p_start_date                     in     date
92   ,p_collective_agreement_id        in     number
93   ,p_cagr_entitlement_item_id       in     number
94   ,p_category_name                  in     varchar2
95   ,p_cagr_entitlement_id            in     number
96   ,p_column_type                    in     varchar2
97   ,p_column_size                    in     number
98   ,p_assignment_id                  in     number   default null
99   ,p_end_date                       in     date     default null
100   ,p_element_type_id                in     number   default null
101   ,p_input_value_id                 in     number   default null
102   ,p_cagr_api_id                    in     number   default null
103   ,p_cagr_api_param_id              in     number   default null
104   ,p_cagr_entitlement_line_id       in     number   default null
105   ,p_value                          in     varchar2 default null
106   ,p_units_of_measure               in     varchar2 default null
107   ,p_range_from                     in     varchar2 default null
108   ,p_range_to                       in     varchar2 default null
109   ,p_grade_spine_id                 in     number   default null
110   ,p_parent_spine_id                in     number   default null
111   ,p_step_id                        in     number   default null
112   ,p_from_step_id                   in     number   default null
113   ,p_to_step_id                     in     number   default null
114   ,p_beneficial_flag                in     varchar2 default null
115   ,p_oipl_id                        in     number   default null
116   ,p_chosen_flag                    in     varchar2 default null
117   ,p_cagr_request_id                in     number   default null
118   ,p_business_group_id              in     number   default null
119   ,p_legislation_code               in     varchar2 default null
120   ,p_eligy_prfl_id                  in     number   default null
121   ,p_formula_id                     in     number   default null
122   ,p_cagr_entitlement_result_id        out nocopy number
123   ,p_object_version_number             out nocopy number
124   );
125 --
126 end per_res_ins;