DBA Data[Home] [Help]

APPS.PER_PGT_UPD dependencies on HR_API

Line 84: When hr_api.check_integrity_violated Then

80: --
81: hr_utility.set_location(' Leaving:'||l_proc, 10);
82: --
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: --
87: per_pgt_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

Line 89: When hr_api.parent_integrity_violated Then

85: -- A check constraint has been violated
86: --
87: per_pgt_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --
92: per_pgt_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

Line 94: When hr_api.unique_integrity_violated Then

90: -- Parent integrity has been violated
91: --
92: per_pgt_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: per_pgt_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: per_pgt_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: --
101: Raise;
102: End update_dml;

Line 221: when hr_api.cannot_find_prog_unit then

217: => per_pgt_shd.g_old_rec.identifier_key
218: );
219: exception
220: --
221: when hr_api.cannot_find_prog_unit then
222: --
223: hr_api.cannot_find_prog_unit_error
224: (p_module_name => 'PER_GEN_HIER_NODE_TYPES'
225: ,p_hook_type => 'AU');

Line 223: hr_api.cannot_find_prog_unit_error

219: exception
220: --
221: when hr_api.cannot_find_prog_unit then
222: --
223: hr_api.cannot_find_prog_unit_error
224: (p_module_name => 'PER_GEN_HIER_NODE_TYPES'
225: ,p_hook_type => 'AU');
226: --
227: end;

Line 286: If (p_rec.business_group_id = hr_api.g_number) then

282: -- p_rec plsql record structure
283: -- to see if a system default is being used. If a system default
284: -- is being used then we must set to the 'current' argument value.
285: --
286: If (p_rec.business_group_id = hr_api.g_number) then
287: p_rec.business_group_id :=
288: per_pgt_shd.g_old_rec.business_group_id;
289: End If;
290: If (p_rec.hierarchy_type = hr_api.g_varchar2) then

Line 290: If (p_rec.hierarchy_type = hr_api.g_varchar2) then

286: If (p_rec.business_group_id = hr_api.g_number) then
287: p_rec.business_group_id :=
288: per_pgt_shd.g_old_rec.business_group_id;
289: End If;
290: If (p_rec.hierarchy_type = hr_api.g_varchar2) then
291: p_rec.hierarchy_type :=
292: per_pgt_shd.g_old_rec.hierarchy_type;
293: End If;
294: If (p_rec.parent_node_type = hr_api.g_varchar2) then

Line 294: If (p_rec.parent_node_type = hr_api.g_varchar2) then

290: If (p_rec.hierarchy_type = hr_api.g_varchar2) then
291: p_rec.hierarchy_type :=
292: per_pgt_shd.g_old_rec.hierarchy_type;
293: End If;
294: If (p_rec.parent_node_type = hr_api.g_varchar2) then
295: p_rec.parent_node_type :=
296: per_pgt_shd.g_old_rec.parent_node_type;
297: End If;
298: If (p_rec.child_node_type = hr_api.g_varchar2) then

Line 298: If (p_rec.child_node_type = hr_api.g_varchar2) then

294: If (p_rec.parent_node_type = hr_api.g_varchar2) then
295: p_rec.parent_node_type :=
296: per_pgt_shd.g_old_rec.parent_node_type;
297: End If;
298: If (p_rec.child_node_type = hr_api.g_varchar2) then
299: p_rec.child_node_type :=
300: per_pgt_shd.g_old_rec.child_node_type;
301: End If;
302: If (p_rec.child_value_set = hr_api.g_varchar2) then

Line 302: If (p_rec.child_value_set = hr_api.g_varchar2) then

298: If (p_rec.child_node_type = hr_api.g_varchar2) then
299: p_rec.child_node_type :=
300: per_pgt_shd.g_old_rec.child_node_type;
301: End If;
302: If (p_rec.child_value_set = hr_api.g_varchar2) then
303: p_rec.child_value_set :=
304: per_pgt_shd.g_old_rec.child_value_set;
305: End If;
306: If (p_rec.identifier_key = hr_api.g_varchar2) then

Line 306: If (p_rec.identifier_key = hr_api.g_varchar2) then

302: If (p_rec.child_value_set = hr_api.g_varchar2) then
303: p_rec.child_value_set :=
304: per_pgt_shd.g_old_rec.child_value_set;
305: End If;
306: If (p_rec.identifier_key = hr_api.g_varchar2) then
307: p_rec.identifier_key :=
308: per_pgt_shd.g_old_rec.identifier_key;
309: End If;
310: --

Line 374: ,p_child_value_set in varchar2 default hr_api.g_varchar2

370: Procedure upd
371: (p_effective_date in date
372: ,p_hier_node_type_id in number
373: ,p_object_version_number in out nocopy number
374: ,p_child_value_set in varchar2 default hr_api.g_varchar2
375: ,p_parent_node_type in varchar2 default hr_api.g_varchar2
376: ,p_identifier_key in varchar2 default hr_api.g_varchar2
377: ) is
378: --

Line 375: ,p_parent_node_type in varchar2 default hr_api.g_varchar2

371: (p_effective_date in date
372: ,p_hier_node_type_id in number
373: ,p_object_version_number in out nocopy number
374: ,p_child_value_set in varchar2 default hr_api.g_varchar2
375: ,p_parent_node_type in varchar2 default hr_api.g_varchar2
376: ,p_identifier_key in varchar2 default hr_api.g_varchar2
377: ) is
378: --
379: l_rec per_pgt_shd.g_rec_type;

Line 376: ,p_identifier_key in varchar2 default hr_api.g_varchar2

372: ,p_hier_node_type_id in number
373: ,p_object_version_number in out nocopy number
374: ,p_child_value_set in varchar2 default hr_api.g_varchar2
375: ,p_parent_node_type in varchar2 default hr_api.g_varchar2
376: ,p_identifier_key in varchar2 default hr_api.g_varchar2
377: ) is
378: --
379: l_rec per_pgt_shd.g_rec_type;
380: l_proc varchar2(72) := g_package||'upd';

Line 391: ,hr_api.g_number -- business_group is non_updateable

387: --
388: l_rec :=
389: per_pgt_shd.convert_args
390: (p_hier_node_type_id
391: ,hr_api.g_number -- business_group is non_updateable
392: ,hr_api.g_varchar2 -- hierarchy_type is non_updateable
393: ,p_parent_node_type
394: ,hr_api.g_varchar2 -- child_node_type is non_updateable
395: ,p_child_value_set

Line 392: ,hr_api.g_varchar2 -- hierarchy_type is non_updateable

388: l_rec :=
389: per_pgt_shd.convert_args
390: (p_hier_node_type_id
391: ,hr_api.g_number -- business_group is non_updateable
392: ,hr_api.g_varchar2 -- hierarchy_type is non_updateable
393: ,p_parent_node_type
394: ,hr_api.g_varchar2 -- child_node_type is non_updateable
395: ,p_child_value_set
396: ,p_object_version_number

Line 394: ,hr_api.g_varchar2 -- child_node_type is non_updateable

390: (p_hier_node_type_id
391: ,hr_api.g_number -- business_group is non_updateable
392: ,hr_api.g_varchar2 -- hierarchy_type is non_updateable
393: ,p_parent_node_type
394: ,hr_api.g_varchar2 -- child_node_type is non_updateable
395: ,p_child_value_set
396: ,p_object_version_number
397: ,p_identifier_key
398: );