DBA Data[Home] [Help]

APPS.PER_STC_UPD dependencies on PER_STC_SHD

Line 55: (p_rec in out nocopy per_stc_shd.g_rec_type

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

Line 91: per_stc_shd.constraint_error

87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: --
91: per_stc_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: --

Line 96: per_stc_shd.constraint_error

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

Line 101: per_stc_shd.constraint_error

97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: --
101: per_stc_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: --
105: Raise;

Line 141: (p_rec in per_stc_shd.g_rec_type

137: --
138: -- {End Of Comments}
139: -- ----------------------------------------------------------------------------
140: Procedure pre_update
141: (p_rec in per_stc_shd.g_rec_type
142: ) is
143: --
144: l_proc varchar2(72) := g_package||'pre_update';
145: --

Line 186: ,p_rec in per_stc_shd.g_rec_type

182: -- {End Of Comments}
183: -- ----------------------------------------------------------------------------
184: Procedure post_update
185: (p_effective_date in date
186: ,p_rec in per_stc_shd.g_rec_type
187: ) is
188: --
189: l_proc varchar2(72) := g_package||'post_update';
190: --

Line 214: => per_stc_shd.g_old_rec.api_name

210: => p_rec.extensible
211: ,p_object_version_number
212: => p_rec.object_version_number
213: ,p_api_name_o
214: => per_stc_shd.g_old_rec.api_name
215: ,p_parent_component_name_o
216: => per_stc_shd.g_old_rec.parent_component_name
217: ,p_updateable_o
218: => per_stc_shd.g_old_rec.updateable

Line 216: => per_stc_shd.g_old_rec.parent_component_name

212: => p_rec.object_version_number
213: ,p_api_name_o
214: => per_stc_shd.g_old_rec.api_name
215: ,p_parent_component_name_o
216: => per_stc_shd.g_old_rec.parent_component_name
217: ,p_updateable_o
218: => per_stc_shd.g_old_rec.updateable
219: ,p_extensible_o
220: => per_stc_shd.g_old_rec.extensible

Line 218: => per_stc_shd.g_old_rec.updateable

214: => per_stc_shd.g_old_rec.api_name
215: ,p_parent_component_name_o
216: => per_stc_shd.g_old_rec.parent_component_name
217: ,p_updateable_o
218: => per_stc_shd.g_old_rec.updateable
219: ,p_extensible_o
220: => per_stc_shd.g_old_rec.extensible
221: ,p_object_version_number_o
222: => per_stc_shd.g_old_rec.object_version_number

Line 220: => per_stc_shd.g_old_rec.extensible

216: => per_stc_shd.g_old_rec.parent_component_name
217: ,p_updateable_o
218: => per_stc_shd.g_old_rec.updateable
219: ,p_extensible_o
220: => per_stc_shd.g_old_rec.extensible
221: ,p_object_version_number_o
222: => per_stc_shd.g_old_rec.object_version_number
223: );
224: --

Line 222: => per_stc_shd.g_old_rec.object_version_number

218: => per_stc_shd.g_old_rec.updateable
219: ,p_extensible_o
220: => per_stc_shd.g_old_rec.extensible
221: ,p_object_version_number_o
222: => per_stc_shd.g_old_rec.object_version_number
223: );
224: --
225: exception
226: --

Line 282: (p_rec in out nocopy per_stc_shd.g_rec_type

278: --
279: -- {End Of Comments}
280: -- ----------------------------------------------------------------------------
281: Procedure convert_defs
282: (p_rec in out nocopy per_stc_shd.g_rec_type
283: ) is
284: --
285: Begin
286: --

Line 294: per_stc_shd.g_old_rec.api_name;

290: -- is being used then we must set to the 'current' argument value.
291: --
292: If (p_rec.api_name = hr_api.g_varchar2) then
293: p_rec.api_name :=
294: per_stc_shd.g_old_rec.api_name;
295: End If;
296: If (p_rec.parent_component_name = hr_api.g_varchar2) then
297: p_rec.parent_component_name :=
298: per_stc_shd.g_old_rec.parent_component_name;

Line 298: per_stc_shd.g_old_rec.parent_component_name;

294: per_stc_shd.g_old_rec.api_name;
295: End If;
296: If (p_rec.parent_component_name = hr_api.g_varchar2) then
297: p_rec.parent_component_name :=
298: per_stc_shd.g_old_rec.parent_component_name;
299: End If;
300: If (p_rec.updateable = hr_api.g_varchar2) then
301: p_rec.updateable :=
302: per_stc_shd.g_old_rec.updateable;

Line 302: per_stc_shd.g_old_rec.updateable;

298: per_stc_shd.g_old_rec.parent_component_name;
299: End If;
300: If (p_rec.updateable = hr_api.g_varchar2) then
301: p_rec.updateable :=
302: per_stc_shd.g_old_rec.updateable;
303: End If;
304: If (p_rec.extensible = hr_api.g_varchar2) then
305: p_rec.extensible :=
306: per_stc_shd.g_old_rec.extensible;

Line 306: per_stc_shd.g_old_rec.extensible;

302: per_stc_shd.g_old_rec.updateable;
303: End If;
304: If (p_rec.extensible = hr_api.g_varchar2) then
305: p_rec.extensible :=
306: per_stc_shd.g_old_rec.extensible;
307: End If;
308: --
309: End convert_defs;
310: --

Line 316: ,p_rec in out nocopy per_stc_shd.g_rec_type

312: -- |---------------------------------< upd >----------------------------------|
313: -- ----------------------------------------------------------------------------
314: Procedure upd
315: (p_effective_date in date
316: ,p_rec in out nocopy per_stc_shd.g_rec_type
317: ) is
318: --
319: l_proc varchar2(72) := g_package||'upd';
320: --

Line 326: per_stc_shd.lck

322: hr_utility.set_location('Entering:'||l_proc, 5);
323: --
324: -- We must lock the row which we need to update.
325: --
326: per_stc_shd.lck
327: (p_rec.component_name
328: ,p_rec.solution_type_name
329: ,p_rec.legislation_code
330: ,p_rec.object_version_number

Line 382: l_rec per_stc_shd.g_rec_type;

378: ,p_extensible in varchar2 default hr_api.g_varchar2
379: ,p_parent_component_name in varchar2 default hr_api.g_varchar2
380: ) is
381: --
382: l_rec per_stc_shd.g_rec_type;
383: l_proc varchar2(72) := g_package||'upd';
384: --
385: Begin
386: hr_utility.set_location('Entering:'||l_proc, 5);

Line 392: per_stc_shd.convert_args

388: -- Call conversion function to turn arguments into the
389: -- l_rec structure.
390: --
391: l_rec :=
392: per_stc_shd.convert_args
393: (p_component_name
394: ,p_solution_type_name
395: ,p_legislation_code
396: ,p_api_name