DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CNT_DEL

Source


1 Package pay_cnt_del as
2 /* $Header: pycntrhi.pkh 120.0.12000000.2 2007/05/01 22:37:29 ahanda noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------------< delete_dml >------------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --   This procedure calls the dt_delete_dml control logic which handles
11 --   the actual datetrack dml.
12 --
13 -- Prerequisites:
14 --   This is an internal private procedure which must be called from the del
15 --   procedure.
16 --
17 -- In Parameters:
18 --   A Pl/Sql record structre.
19 --
20 -- Post Success:
21 --   Processing contines.
22 --
23 -- Post Failure:
24 --   No specific error handling is required within this procedure.
25 --
26 -- Developer Implementation Notes:
27 --   None.
28 --
29 -- Access Status:
30 --   Internal Row Handler Use Only.
31 --
32 -- {End Of Comments}
33 -- ----------------------------------------------------------------------------
34 Procedure delete_dml
35       (p_rec                    in out nocopy pay_cnt_shd.g_rec_type,
36        p_effective_date         in      date,
37        p_datetrack_mode         in      varchar2,
38        p_validation_start_date  in      date,
39        p_validation_end_date    in      date);
40 --
41 -- ----------------------------------------------------------------------------
42 -- |---------------------------------< del >----------------------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start Of Comments}
45 --
46 -- Description:
47 --   This procedure is the record interface for the datetrack delete
48 --   process for the specified entity. The role of this
49 --   process is to delete the dateracked row from the HR schema.
50 --   This process is the main backbone of the del business process. The
51 --   processing of this procedure is as follows:
52 --   1) Ensure that the datetrack delete mode is valid.
53 --   2) The controlling validation process delete_validate is then executed
54 --      which will execute all private and public validation business rule
55 --      processes.
56 --   3) The pre_delete process is then executed which enables any
57 --      logic to be processed before the delete dml process is executed.
58 --   4) The delete_dml process will physical perform the delete dml for the
59 --      specified row.
60 --   5) The post_delete process is then executed which enables any
61 --      logic to be processed after the delete dml process.
62 --
63 -- Prerequisites:
64 --   The main parameters to the business process have to be in the record
65 --   format.
66 --
67 -- In Parameters:
68 --   p_effective_date
69 --     Specifies the date of the datetrack update operation.
70 --   p_datetrack_mode
71 --     Determines the datetrack update mode.
72 --
73 -- Post Success:
74 --   The specified row will be fully validated and deleted for the specified
75 --   entity without being committed.
76 --
77 -- Post Failure:
78 --   If an error has occurred, an error message will be supplied with the work
79 --   rolled back.
80 --
81 -- Developer Implementation Notes:
82 --   None.
83 --
84 -- Access Status:
85 --   Internal Development Use Only.
86 --
87 -- {End Of Comments}
88 -- ----------------------------------------------------------------------------
89 Procedure del
90   (
91   p_rec                  in out  nocopy pay_cnt_shd.g_rec_type,
92   p_effective_date      in       date,
93   p_datetrack_mode      in       varchar2,
94   p_delete_routine      in       varchar2
95   );
96 --
97 -- ----------------------------------------------------------------------------
98 -- |---------------------------------< del >----------------------------------|
99 -- ----------------------------------------------------------------------------
100 -- {Start Of Comments}
101 --
102 -- Description:
103 --   This procedure is the attribute interface for the delete
104 --   process for the specified entity and is the outermost layer. The role
105 --   of this process is to validate and delete the specified row from the
106 --   HR schema. The processing of this procedure is as follows:
107 --   1) The attributes are converted into a local record structure by
108 --      explicitly coding the attribute parameters into the g_rec_type
109 --      datatype.
110 --   2) After the conversion has taken place, the corresponding record del
111 --      interface business process is executed.
112 --
113 -- Prerequisites:
114 --
115 -- In Parameters:
116 --   p_effective_date
117 --     Specifies the date of the datetrack update operation.
118 --   p_datetrack_mode
119 --     Determines the datetrack update mode.
120 --
121 -- Post Success:
122 --   The specified row will be fully validated and deleted for the specified
123 --   entity without being committed.
124 --
125 -- Post Failure:
126 --   If an error has occurred, an error message will be supplied with the work
127 --   rolled back.
128 --
129 -- Developer Implementation Notes:
130 --   The attrbute in parameters should be modified as to the business process
131 --   requirements.
132 --
133 -- Access Status:
134 --   Internal Development Use Only.
135 --
136 -- {End Of Comments}
137 -- ----------------------------------------------------------------------------
138 Procedure del
139   (
140   p_emp_county_tax_rule_id in    number,
141   p_effective_start_date     out nocopy date,
142   p_effective_end_date       out nocopy date,
143   p_object_version_number in out nocopy number,
144   p_effective_date        in     date,
145   p_datetrack_mode        in     varchar2,
146   p_delete_routine        in     varchar2
147   );
148 --
149 end pay_cnt_del;