DBA Data[Home] [Help]

APPS.PER_SLS_UPD dependencies on PER_SLS_SHD

Line 55: (p_rec in out nocopy per_sls_shd.g_rec_type

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

Line 89: per_sls_shd.constraint_error

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

Line 94: per_sls_shd.constraint_error

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

Line 99: per_sls_shd.constraint_error

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

Line 139: (p_rec in per_sls_shd.g_rec_type

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

Line 184: ,p_rec in per_sls_shd.g_rec_type

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

Line 208: => per_sls_shd.g_old_rec.description

204: => p_rec.solution_set_impl_id
205: ,p_object_version_number
206: => p_rec.object_version_number
207: ,p_description_o
208: => per_sls_shd.g_old_rec.description
209: ,p_status_o
210: => per_sls_shd.g_old_rec.status
211: ,p_solution_set_impl_id_o
212: => per_sls_shd.g_old_rec.solution_set_impl_id

Line 210: => per_sls_shd.g_old_rec.status

206: => p_rec.object_version_number
207: ,p_description_o
208: => per_sls_shd.g_old_rec.description
209: ,p_status_o
210: => per_sls_shd.g_old_rec.status
211: ,p_solution_set_impl_id_o
212: => per_sls_shd.g_old_rec.solution_set_impl_id
213: ,p_object_version_number_o
214: => per_sls_shd.g_old_rec.object_version_number

Line 212: => per_sls_shd.g_old_rec.solution_set_impl_id

208: => per_sls_shd.g_old_rec.description
209: ,p_status_o
210: => per_sls_shd.g_old_rec.status
211: ,p_solution_set_impl_id_o
212: => per_sls_shd.g_old_rec.solution_set_impl_id
213: ,p_object_version_number_o
214: => per_sls_shd.g_old_rec.object_version_number
215: );
216: --

Line 214: => per_sls_shd.g_old_rec.object_version_number

210: => per_sls_shd.g_old_rec.status
211: ,p_solution_set_impl_id_o
212: => per_sls_shd.g_old_rec.solution_set_impl_id
213: ,p_object_version_number_o
214: => per_sls_shd.g_old_rec.object_version_number
215: );
216: --
217: exception
218: --

Line 274: (p_rec in out nocopy per_sls_shd.g_rec_type

270: --
271: -- {End Of Comments}
272: -- ----------------------------------------------------------------------------
273: Procedure convert_defs
274: (p_rec in out nocopy per_sls_shd.g_rec_type
275: ) is
276: --
277: Begin
278: --

Line 286: per_sls_shd.g_old_rec.description;

282: -- is being used then we must set to the 'current' argument value.
283: --
284: If (p_rec.description = hr_api.g_varchar2) then
285: p_rec.description :=
286: per_sls_shd.g_old_rec.description;
287: End If;
288: If (p_rec.status = hr_api.g_varchar2) then
289: p_rec.status :=
290: per_sls_shd.g_old_rec.status;

Line 290: per_sls_shd.g_old_rec.status;

286: per_sls_shd.g_old_rec.description;
287: End If;
288: If (p_rec.status = hr_api.g_varchar2) then
289: p_rec.status :=
290: per_sls_shd.g_old_rec.status;
291: End If;
292: If (p_rec.solution_set_impl_id = hr_api.g_number) then
293: p_rec.solution_set_impl_id :=
294: per_sls_shd.g_old_rec.solution_set_impl_id;

Line 294: per_sls_shd.g_old_rec.solution_set_impl_id;

290: per_sls_shd.g_old_rec.status;
291: End If;
292: If (p_rec.solution_set_impl_id = hr_api.g_number) then
293: p_rec.solution_set_impl_id :=
294: per_sls_shd.g_old_rec.solution_set_impl_id;
295: End If;
296:
297: --
298: End convert_defs;

Line 305: ,p_rec in out nocopy per_sls_shd.g_rec_type

301: -- |---------------------------------< upd >----------------------------------|
302: -- ----------------------------------------------------------------------------
303: Procedure upd
304: (p_effective_date in date
305: ,p_rec in out nocopy per_sls_shd.g_rec_type
306: ) is
307: --
308: l_proc varchar2(72) := g_package||'upd';
309: --

Line 315: per_sls_shd.lck

311: hr_utility.set_location('Entering:'||l_proc, 5);
312: --
313: -- We must lock the row which we need to update.
314: --
315: per_sls_shd.lck
316: (p_rec.solution_set_name
317: ,p_rec.user_id
318: ,p_rec.object_version_number
319: );

Line 368: l_rec per_sls_shd.g_rec_type;

364: ,p_solution_set_impl_id in number default hr_api.g_number
365: ,p_description in varchar2 default hr_api.g_varchar2
366: ) is
367: --
368: l_rec per_sls_shd.g_rec_type;
369: l_proc varchar2(72) := g_package||'upd';
370: --
371: Begin
372: hr_utility.set_location('Entering:'||l_proc, 5);

Line 378: per_sls_shd.convert_args

374: -- Call conversion function to turn arguments into the
375: -- l_rec structure.
376: --
377: l_rec :=
378: per_sls_shd.convert_args
379: (p_solution_set_name
380: ,p_user_id
381: ,p_description
382: ,p_status