DBA Data[Home] [Help]

APPS.HXC_HRP_DEL dependencies on HXC_HRP_SHD

Line 53: (p_rec in hxc_hrp_shd.g_rec_type

49: --
50: -- {End Of Comments}
51: -- ----------------------------------------------------------------------------
52: Procedure delete_dml
53: (p_rec in hxc_hrp_shd.g_rec_type
54: ) is
55: --
56: l_proc varchar2(72);
57: --

Line 81: hxc_hrp_shd.constraint_error

77: Exception
78: When hr_api.child_integrity_violated then
79: -- Child integrity has been violated
80: --
81: hxc_hrp_shd.constraint_error
82: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
83: When Others Then
84: --
85: Raise;

Line 120: Procedure pre_delete(p_rec in hxc_hrp_shd.g_rec_type) is

116: -- Internal Row Handler Use Only.
117: --
118: -- {End Of Comments}
119: -- ----------------------------------------------------------------------------
120: Procedure pre_delete(p_rec in hxc_hrp_shd.g_rec_type) is
121: --
122: l_proc varchar2(72);
123: --
124: Begin

Line 165: Procedure post_delete(p_rec in hxc_hrp_shd.g_rec_type) is

161: -- Internal Row Handler Use Only.
162: --
163: -- {End Of Comments}
164: -- -----------------------------------------------------------------------------
165: Procedure post_delete(p_rec in hxc_hrp_shd.g_rec_type) is
166: --
167: l_proc varchar2(72);
168: --
169: Begin

Line 180: => hxc_hrp_shd.g_old_rec.name

176: hxc_hrp_rkd.after_delete
177: (p_recurring_period_id
178: => p_rec.recurring_period_id
179: ,p_name_o
180: => hxc_hrp_shd.g_old_rec.name
181: ,p_start_date_o
182: => hxc_hrp_shd.g_old_rec.start_date
183: ,p_end_date_o
184: => hxc_hrp_shd.g_old_rec.end_date

Line 182: => hxc_hrp_shd.g_old_rec.start_date

178: => p_rec.recurring_period_id
179: ,p_name_o
180: => hxc_hrp_shd.g_old_rec.name
181: ,p_start_date_o
182: => hxc_hrp_shd.g_old_rec.start_date
183: ,p_end_date_o
184: => hxc_hrp_shd.g_old_rec.end_date
185: ,p_period_type_o
186: => hxc_hrp_shd.g_old_rec.period_type

Line 184: => hxc_hrp_shd.g_old_rec.end_date

180: => hxc_hrp_shd.g_old_rec.name
181: ,p_start_date_o
182: => hxc_hrp_shd.g_old_rec.start_date
183: ,p_end_date_o
184: => hxc_hrp_shd.g_old_rec.end_date
185: ,p_period_type_o
186: => hxc_hrp_shd.g_old_rec.period_type
187: ,p_duration_in_days_o
188: => hxc_hrp_shd.g_old_rec.duration_in_days

Line 186: => hxc_hrp_shd.g_old_rec.period_type

182: => hxc_hrp_shd.g_old_rec.start_date
183: ,p_end_date_o
184: => hxc_hrp_shd.g_old_rec.end_date
185: ,p_period_type_o
186: => hxc_hrp_shd.g_old_rec.period_type
187: ,p_duration_in_days_o
188: => hxc_hrp_shd.g_old_rec.duration_in_days
189: ,p_object_version_number_o
190: => hxc_hrp_shd.g_old_rec.object_version_number

Line 188: => hxc_hrp_shd.g_old_rec.duration_in_days

184: => hxc_hrp_shd.g_old_rec.end_date
185: ,p_period_type_o
186: => hxc_hrp_shd.g_old_rec.period_type
187: ,p_duration_in_days_o
188: => hxc_hrp_shd.g_old_rec.duration_in_days
189: ,p_object_version_number_o
190: => hxc_hrp_shd.g_old_rec.object_version_number
191: );
192: --

Line 190: => hxc_hrp_shd.g_old_rec.object_version_number

186: => hxc_hrp_shd.g_old_rec.period_type
187: ,p_duration_in_days_o
188: => hxc_hrp_shd.g_old_rec.duration_in_days
189: ,p_object_version_number_o
190: => hxc_hrp_shd.g_old_rec.object_version_number
191: );
192: --
193: exception
194: --

Line 212: (p_rec in hxc_hrp_shd.g_rec_type

208: -- ----------------------------------------------------------------------------
209: -- |---------------------------------< del >----------------------------------|
210: -- ----------------------------------------------------------------------------
211: Procedure del
212: (p_rec in hxc_hrp_shd.g_rec_type
213: ) is
214: --
215: l_proc varchar2(72);
216: --

Line 226: hxc_hrp_shd.lck

222: end if;
223: --
224: -- We must lock the row which we need to delete.
225: --
226: hxc_hrp_shd.lck
227: (p_rec.recurring_period_id
228: ,p_rec.object_version_number
229: );
230: --

Line 257: l_rec hxc_hrp_shd.g_rec_type;

253: (p_recurring_period_id in number
254: ,p_object_version_number in number
255: ) is
256: --
257: l_rec hxc_hrp_shd.g_rec_type;
258: l_proc varchar2(72);
259: --
260: Begin
261: g_debug:=hr_utility.debug_enabled;