DBA Data[Home] [Help]

APPS.PER_PSS_INS dependencies on HR_UTILITY

Line 58: hr_utility.set_location('Entering:'||l_proc, 5);

54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: --
62: -- Insert the row into: per_salary_surveys

Line 127: hr_utility.set_location(' Leaving:'||l_proc, 10);

123: p_rec.attribute19,
124: p_rec.attribute20
125: );
126: --
127: hr_utility.set_location(' Leaving:'||l_proc, 10);
128: Exception
129: When hr_api.check_integrity_violated Then
130: -- A check constraint has been violated
131: per_pss_shd.constraint_error

Line 189: hr_utility.set_location('Entering:'||l_proc, 5);

185: --
186: Cursor C_Sel1 is select per_salary_surveys_s.nextval from sys.dual;
187: --
188: Begin
189: hr_utility.set_location('Entering:'||l_proc, 5);
190: --
191: --
192: -- Select the next sequence number
193: --

Line 198: hr_utility.set_location(' Leaving:'||l_proc, 10);

194: Open C_Sel1;
195: Fetch C_Sel1 Into p_rec.salary_survey_id;
196: Close C_Sel1;
197: --
198: hr_utility.set_location(' Leaving:'||l_proc, 10);
199: End pre_insert;
200: --
201: -- ----------------------------------------------------------------------------
202: -- |-----------------------------< post_insert >------------------------------|

Line 239: hr_utility.set_location('Entering:'||l_proc, 5);

235: --
236: l_proc varchar2(72) := g_package||'post_insert';
237: --
238: Begin
239: hr_utility.set_location('Entering:'||l_proc, 5);
240: --
241: begin
242: per_pss_rki.after_insert
243: (p_salary_survey_id

Line 313: hr_utility.set_location(' Leaving:'||l_proc, 10);

309: ,p_hook_type => 'AI'
310: );
311: end;
312: --
313: hr_utility.set_location(' Leaving:'||l_proc, 10);
314: --
315: End post_insert;
316: --
317: -- ----------------------------------------------------------------------------

Line 329: hr_utility.set_location('Entering:'||l_proc, 5);

325: --
326: l_proc varchar2(72) := g_package||'ins';
327: --
328: Begin
329: hr_utility.set_location('Entering:'||l_proc, 5);
330: --
331: -- Call the supporting insert validate operations
332: --
333: per_pss_bus.insert_validate(p_rec, p_effective_date);

Line 389: hr_utility.set_location('Entering:'||l_proc, 5);

385: l_rec per_pss_shd.g_rec_type;
386: l_proc varchar2(72) := g_package||'ins';
387: --
388: Begin
389: hr_utility.set_location('Entering:'||l_proc, 5);
390: --
391: -- Call conversion function to turn arguments into the
392: -- p_rec structure.
393: --

Line 439: hr_utility.set_location(' Leaving:'||l_proc, 10);

435: --
436: p_salary_survey_id := l_rec.salary_survey_id;
437: p_object_version_number := l_rec.object_version_number;
438: --
439: hr_utility.set_location(' Leaving:'||l_proc, 10);
440: End ins;
441: --
442: end per_pss_ins;