DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PEA_DEL

Source


1 Package ben_pea_del as
2 /* $Header: bepearhi.pkh 120.0 2005/05/28 10:31:36 appldev 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 ben_pea_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 	ben_pea_shd.g_rec_type,
92   p_effective_date	in 	date,
93   p_datetrack_mode	in 	varchar2
94   );
95 --
96 -- ----------------------------------------------------------------------------
97 -- |---------------------------------< del >----------------------------------|
98 -- ----------------------------------------------------------------------------
99 -- {Start Of Comments}
100 --
101 -- Description:
102 --   This procedure is the attribute interface for the delete
103 --   process for the specified entity and is the outermost layer. The role
104 --   of this process is to validate and delete the specified row from the
105 --   HR schema. The processing of this procedure is as follows:
106 --   1) The attributes are converted into a local record structure by
107 --      explicitly coding the attribute parameters into the g_rec_type
108 --      datatype.
109 --   2) After the conversion has taken place, the corresponding record del
110 --      interface business process is executed.
111 --
112 -- Prerequisites:
113 --
114 -- In Parameters:
115 --   p_effective_date
116 --     Specifies the date of the datetrack update operation.
117 --   p_datetrack_mode
118 --     Determines the datetrack update mode.
119 --
120 -- Post Success:
121 --   The specified row will be fully validated and deleted for the specified
122 --   entity without being committed.
123 --
124 -- Post Failure:
125 --   If an error has occurred, an error message will be supplied with the work
126 --   rolled back.
127 --
128 -- Developer Implementation Notes:
129 --   The attrbute in parameters should be modified as to the business process
130 --   requirements.
131 --
132 -- Access Status:
133 --   Internal Development Use Only.
134 --
135 -- {End Of Comments}
136 -- ----------------------------------------------------------------------------
137 Procedure del
138   (
139   p_prtt_enrt_actn_id	  in 	 number,
140   p_effective_start_date     out nocopy date,
141   p_effective_end_date	     out nocopy date,
142   p_object_version_number in out nocopy number,
143   p_effective_date	  in     date,
144   p_datetrack_mode  	  in     varchar2
145   );
146 --
147 end ben_pea_del;