DBA Data[Home] [Help]

PACKAGE: APPS.BEN_BEC_INS

Source


1 Package ben_bec_ins AUTHID CURRENT_USER as
2 /* $Header: bebecrhi.pkh 120.0 2005/05/28 00:37:33 appldev 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 supplied with the work
38 --   rolled back.
39 --
40 -- Developer Implementation Notes:
41 --   None.
42 --
43 -- Access Status:
44 --   Internal Development Use Only.
45 --
46 -- {End Of Comments}
47 -- ----------------------------------------------------------------------------
48 Procedure ins
49   (
50   p_effective_date               in date,
51   p_rec        in out nocopy ben_bec_shd.g_rec_type
52   );
53 --
54 -- ----------------------------------------------------------------------------
55 -- |---------------------------------< ins >----------------------------------|
56 -- ----------------------------------------------------------------------------
57 -- {Start Of Comments}
58 --
59 -- Description:
60 --   This procedure is the attribute interface for the insert
61 --   process for the specified entity and is the outermost layer. The role
62 --   of this process is to insert a fully validated row into the HR schema
63 --   passing back to the calling process, any system generated values
64 --   (e.g. object version number attributes).The processing of this
65 --   procedure is as follows:
66 --   1) The attributes are converted into a local record structure by
67 --      calling the convert_args function.
68 --   2) After the conversion has taken place, the corresponding record ins
69 --      interface process is executed.
70 --   3) OUT parameters are then set to their corresponding record attributes.
71 --
72 -- Prerequisites:
73 --
74 -- In Parameters:
75 --
76 -- Post Success:
77 --   A fully validated row will be inserted for the specified entity
78 --   without being committed.
79 --
80 -- Post Failure:
81 --   If an error has occurred, an error message will be supplied with the work
82 --   rolled back.
83 --
84 -- Developer Implementation Notes:
85 --   None.
86 --
87 -- Access Status:
88 --   Internal Development Use Only.
89 --
90 -- {End Of Comments}
91 -- ----------------------------------------------------------------------------
92 Procedure ins
93   (
94   p_effective_date               in date,
95   p_batch_elctbl_id              out nocopy number,
96   p_benefit_action_id            in number,
97   p_person_id                    in number,
98   p_pgm_id                       in number           default null,
99   p_pl_id                        in number           default null,
100   p_oipl_id                      in number           default null,
101   p_enrt_cvg_strt_dt             in date             default null,
102   p_enrt_perd_strt_dt            in date             default null,
103   p_enrt_perd_end_dt             in date             default null,
104   p_erlst_deenrt_dt              in date             default null,
105   p_dflt_enrt_dt                 in date             default null,
106   p_enrt_typ_cycl_cd             in varchar2         default null,
107   p_comp_lvl_cd                  in varchar2         default null,
108   p_mndtry_flag                  in varchar2,
109   p_dflt_flag                    in varchar2,
110   p_business_group_id            in number,
111   p_object_version_number        out nocopy number
112   );
113 --
114 end ben_bec_ins;