DBA Data[Home] [Help]

APPS.HR_TPC_UPD dependencies on HR_TPC_SHD

Line 55: (p_rec in out nocopy hr_tpc_shd.g_rec_type

51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml
55: (p_rec in out nocopy hr_tpc_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --

Line 86: hr_tpc_shd.constraint_error

82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: --
86: hr_tpc_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --

Line 91: hr_tpc_shd.constraint_error

87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: --
91: hr_tpc_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: --

Line 96: hr_tpc_shd.constraint_error

92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: --
96: hr_tpc_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When Others Then
99: --
100: Raise;

Line 136: (p_rec in hr_tpc_shd.g_rec_type

132: --
133: -- {End Of Comments}
134: -- ----------------------------------------------------------------------------
135: Procedure pre_update
136: (p_rec in hr_tpc_shd.g_rec_type
137: ) is
138: --
139: l_proc varchar2(72) := g_package||'pre_update';
140: --

Line 180: (p_rec in hr_tpc_shd.g_rec_type

176: --
177: -- {End Of Comments}
178: -- ----------------------------------------------------------------------------
179: Procedure post_update
180: (p_rec in hr_tpc_shd.g_rec_type
181: ) is
182: --
183: l_proc varchar2(72) := g_package||'post_update';
184: --

Line 197: => hr_tpc_shd.g_old_rec.topic_key

193: => p_rec.handler
194: ,p_object_version_number
195: => p_rec.object_version_number
196: ,p_topic_key_o
197: => hr_tpc_shd.g_old_rec.topic_key
198: ,p_handler_o
199: => hr_tpc_shd.g_old_rec.handler
200: ,p_object_version_number_o
201: => hr_tpc_shd.g_old_rec.object_version_number

Line 199: => hr_tpc_shd.g_old_rec.handler

195: => p_rec.object_version_number
196: ,p_topic_key_o
197: => hr_tpc_shd.g_old_rec.topic_key
198: ,p_handler_o
199: => hr_tpc_shd.g_old_rec.handler
200: ,p_object_version_number_o
201: => hr_tpc_shd.g_old_rec.object_version_number
202: );
203: --

Line 201: => hr_tpc_shd.g_old_rec.object_version_number

197: => hr_tpc_shd.g_old_rec.topic_key
198: ,p_handler_o
199: => hr_tpc_shd.g_old_rec.handler
200: ,p_object_version_number_o
201: => hr_tpc_shd.g_old_rec.object_version_number
202: );
203: --
204: exception
205: --

Line 261: (p_rec in out nocopy hr_tpc_shd.g_rec_type

257: --
258: -- {End Of Comments}
259: -- ----------------------------------------------------------------------------
260: Procedure convert_defs
261: (p_rec in out nocopy hr_tpc_shd.g_rec_type
262: ) is
263: --
264: Begin
265: --

Line 273: hr_tpc_shd.g_old_rec.topic_key;

269: -- is being used then we must set to the 'current' argument value.
270: --
271: If (p_rec.topic_key = hr_api.g_varchar2) then
272: p_rec.topic_key :=
273: hr_tpc_shd.g_old_rec.topic_key;
274: End If;
275: If (p_rec.handler = hr_api.g_varchar2) then
276: p_rec.handler :=
277: hr_tpc_shd.g_old_rec.handler;

Line 277: hr_tpc_shd.g_old_rec.handler;

273: hr_tpc_shd.g_old_rec.topic_key;
274: End If;
275: If (p_rec.handler = hr_api.g_varchar2) then
276: p_rec.handler :=
277: hr_tpc_shd.g_old_rec.handler;
278: End If;
279: --
280: End convert_defs;
281: --

Line 286: (p_rec in out nocopy hr_tpc_shd.g_rec_type

282: -- ----------------------------------------------------------------------------
283: -- |---------------------------------< upd >----------------------------------|
284: -- ----------------------------------------------------------------------------
285: Procedure upd
286: (p_rec in out nocopy hr_tpc_shd.g_rec_type
287: ) is
288: --
289: l_proc varchar2(72) := g_package||'upd';
290: --

Line 296: hr_tpc_shd.lck

292: hr_utility.set_location('Entering:'||l_proc, 5);
293: --
294: -- We must lock the row which we need to update.
295: --
296: hr_tpc_shd.lck
297: (p_rec.topic_id
298: ,p_rec.object_version_number
299: );
300: --

Line 342: l_rec hr_tpc_shd.g_rec_type;

338: ,p_object_version_number in out nocopy number
339: ,p_handler in varchar2 default hr_api.g_varchar2
340: ) is
341: --
342: l_rec hr_tpc_shd.g_rec_type;
343: l_proc varchar2(72) := g_package||'upd';
344: --
345: Begin
346: hr_utility.set_location('Entering:'||l_proc, 5);

Line 352: hr_tpc_shd.convert_args

348: -- Call conversion function to turn arguments into the
349: -- l_rec structure.
350: --
351: l_rec :=
352: hr_tpc_shd.convert_args
353: (p_topic_id
354: ,hr_api.g_varchar2
355: ,p_handler
356: ,p_object_version_number