DBA Data[Home] [Help]

PACKAGE: APPS.HXC_HAS_INS

Source


1 Package hxc_has_ins AUTHID CURRENT_USER as
2 /* $Header: hxchasrhi.pkh 120.2 2006/06/08 13:22:58 gsirigin 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_rec                          in out nocopy hxc_has_shd.g_rec_type
49   );
50 --
51 -- ----------------------------------------------------------------------------
52 -- |---------------------------------< ins >----------------------------------|
53 -- ----------------------------------------------------------------------------
54 -- {Start Of Comments}
55 --
56 -- Description:
57 --   This procedure is the attribute interface for the insert
58 --   process for the specified entity and is the outermost layer. The role
59 --   of this process is to insert a fully validated row into the HR schema
60 --   passing back to the calling process, any system generated values
61 --   (e.g. object version number attributes).The processing of this
62 --   procedure is as follows:
63 --   1) The attributes are converted into a local record structure by
64 --      calling the convert_args function.
65 --   2) After the conversion has taken place, the corresponding record ins
66 --      interface process is executed.
67 --   3) OUT parameters are then set to their corresponding record attributes.
68 --
69 -- Prerequisites:
70 --
71 -- In Parameters:
72 --
73 -- Post Success:
74 --   A fully validated row will be inserted for the specified entity
75 --   without being committed.
76 --
77 -- Post Failure:
78 --   If an error has occurred, an error message will be raised.
79 --
80 -- Developer Implementation Notes:
81 --   None.
82 --
83 -- Access Status:
84 --   Internal Development Use Only.
85 --
86 -- {End Of Comments}
87 -- ----------------------------------------------------------------------------
88 Procedure ins
89   (p_name                           in     varchar2
90   ,p_business_group_id		    in     number   default null
91   ,p_legislation_code		    in     varchar2 default null
92   ,p_description                    in     varchar2 default null
93   ,p_run_recipient_extensions       in     varchar2 default null
94   ,p_admin_role                     in     varchar2 default null
95   ,p_error_admin_role               in     varchar2 default null
96   ,p_approval_style_id                 out nocopy number
97   ,p_object_version_number             out nocopy number
98   );
99 --
100 end hxc_has_ins;