DBA Data[Home] [Help]

PACKAGE: APPS.BEN_CTK_INS

Source


1 Package ben_ctk_ins as
2 /* $Header: bectkrhi.pkh 120.0 2005/05/28 01:25 appldev 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_group_per_in_ler_id  in  number
30   ,p_task_id  in  number);
31 --
32 -- ----------------------------------------------------------------------------
33 -- |---------------------------------< ins >----------------------------------|
34 -- ----------------------------------------------------------------------------
35 -- {Start Of Comments}
36 --
37 -- Description:
38 --   This procedure is the record interface for the insert process
39 --   for the specified entity. The role of this process is to insert a fully
40 --   validated row, into the HR schema passing back to  the calling process,
41 --   any system generated values (e.g. primary and object version number
42 --   attributes). This process is the main backbone of the ins
43 --   process. The processing of this procedure is as follows:
44 --   1) The controlling validation process insert_validate is executed
45 --      which will execute all private and public validation business rule
46 --      processes.
47 --   2) The pre_insert business process is then executed which enables any
48 --      logic to be processed before the insert dml process is executed.
49 --   3) The insert_dml process will physical perform the insert dml into the
50 --      specified entity.
51 --   4) The post_insert business process is then executed which enables any
52 --      logic to be processed after the insert dml process.
53 --
54 -- Prerequisites:
55 --   The main parameters to the this process have to be in the record
56 --   format.
57 --
58 -- In Parameters:
59 --
60 -- Post Success:
61 --   A fully validated row will be inserted into the specified entity
62 --   without being committed.
63 --
64 -- Post Failure:
65 --   If an error has occurred, an error message will be raised.
66 --
67 -- Developer Implementation Notes:
68 --   None.
69 --
70 -- Access Status:
71 --   Internal Development Use Only.
72 --
73 -- {End Of Comments}
74 -- ----------------------------------------------------------------------------
75 Procedure ins
76   (p_rec                      in out nocopy ben_ctk_shd.g_rec_type
77   );
78 --
79 -- ----------------------------------------------------------------------------
80 -- |---------------------------------< ins >----------------------------------|
81 -- ----------------------------------------------------------------------------
82 -- {Start Of Comments}
83 --
84 -- Description:
85 --   This procedure is the attribute interface for the insert
86 --   process for the specified entity and is the outermost layer. The role
87 --   of this process is to insert a fully validated row into the HR schema
88 --   passing back to the calling process, any system generated values
89 --   (e.g. object version number attributes).The processing of this
90 --   procedure is as follows:
91 --   1) The attributes are converted into a local record structure by
92 --      calling the convert_args function.
93 --   2) After the conversion has taken place, the corresponding record ins
94 --      interface process is executed.
95 --   3) OUT parameters are then set to their corresponding record attributes.
96 --
97 -- Prerequisites:
98 --
99 -- In Parameters:
100 --
101 -- Post Success:
102 --   A fully validated row will be inserted for the specified entity
103 --   without being committed.
104 --
105 -- Post Failure:
106 --   If an error has occurred, an error message will be raised.
107 --
108 -- Developer Implementation Notes:
109 --   None.
110 --
111 -- Access Status:
112 --   Internal Development Use Only.
113 --
114 -- {End Of Comments}
115 -- ----------------------------------------------------------------------------
116 Procedure ins
117   (p_group_per_in_ler_id            in     number
118   ,p_task_id                        in     number
119   ,p_group_pl_id                    in     number
120   ,p_lf_evt_ocrd_dt                 in     date
121   ,p_status_cd                      in     varchar2 default null
122   ,p_access_cd                      in     varchar2 default null
123   ,p_task_last_update_date          in     date     default null
124   ,p_task_last_update_by            in     number   default null
125   ,p_object_version_number             out nocopy number
126   );
127 --
128 end ben_ctk_ins;