DBA Data[Home] [Help]

APPS.HXC_HTS_DEL dependencies on HXC_HTS_SHD

Line 54: (p_rec in hxc_hts_shd.g_rec_type

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

Line 67: hxc_hts_shd.g_api_dml := true; -- Set the api dml status

63: l_proc := g_package||'delete_dml';
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: end if;
66: --
67: hxc_hts_shd.g_api_dml := true; -- Set the api dml status
68: --
69: -- Delete the hxc_time_sources row.
70: --
71: delete from hxc_time_sources

Line 74: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status

70: --
71: delete from hxc_time_sources
72: where time_source_id = p_rec.time_source_id;
73: --
74: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
75: --
76: if g_debug then
77: hr_utility.set_location(' Leaving:'||l_proc, 10);
78: end if;

Line 83: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status

79: --
80: Exception
81: When hr_api.child_integrity_violated then
82: -- Child integrity has been violated
83: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
84: hxc_hts_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When Others Then
87: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status

Line 84: hxc_hts_shd.constraint_error

80: Exception
81: When hr_api.child_integrity_violated then
82: -- Child integrity has been violated
83: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
84: hxc_hts_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When Others Then
87: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
88: Raise;

Line 87: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status

83: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
84: hxc_hts_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When Others Then
87: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
88: Raise;
89: End delete_dml;
90: --
91: -- ----------------------------------------------------------------------------

Line 123: Procedure pre_delete(p_rec in hxc_hts_shd.g_rec_type) is

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

Line 170: Procedure post_delete(p_rec in hxc_hts_shd.g_rec_type) is

166: -- Internal Row Handler Use Only.
167: --
168: -- {End Of Comments}
169: -- -----------------------------------------------------------------------------
170: Procedure post_delete(p_rec in hxc_hts_shd.g_rec_type) is
171: --
172: l_proc varchar2(72);
173: --
174: Begin

Line 186: => hxc_hts_shd.g_old_rec.name

182: hxc_hts_rkd.after_delete
183: (p_time_source_id
184: => p_rec.time_source_id
185: ,p_name_o
186: => hxc_hts_shd.g_old_rec.name
187: ,p_object_version_number_o
188: => hxc_hts_shd.g_old_rec.object_version_number
189: );
190: --

Line 188: => hxc_hts_shd.g_old_rec.object_version_number

184: => p_rec.time_source_id
185: ,p_name_o
186: => hxc_hts_shd.g_old_rec.name
187: ,p_object_version_number_o
188: => hxc_hts_shd.g_old_rec.object_version_number
189: );
190: --
191: exception
192: --

Line 210: (p_rec in hxc_hts_shd.g_rec_type

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

Line 225: hxc_hts_shd.lck

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

Line 256: l_rec hxc_hts_shd.g_rec_type;

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