DBA Data[Home] [Help]

APPS.PER_PDM_INS dependencies on HR_UTILITY

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

48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: per_person_dlvry_methods
56: --

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

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

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

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

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

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

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

234: --
235: l_proc varchar2(72) := g_package||'post_insert';
236: --
237: Begin
238: hr_utility.set_location('Entering:'||l_proc, 5);
239: --
240: --
241: -- Start of API User Hook for post_insert.
242: --

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

291: --
292: -- End of API User Hook for post_insert.
293: --
294: --
295: hr_utility.set_location(' Leaving:'||l_proc, 10);
296: End post_insert;
297: --
298: -- ----------------------------------------------------------------------------
299: -- |---------------------------------< ins >----------------------------------|

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

306: --
307: l_proc varchar2(72) := g_package||'ins';
308: --
309: Begin
310: hr_utility.set_location('Entering:'||l_proc, 5);
311: --
312: -- Call the supporting insert validate operations
313: --
314: per_pdm_bus.insert_validate(p_rec, p_effective_date);

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

369: l_rec per_pdm_shd.g_rec_type;
370: l_proc varchar2(72) := g_package||'ins';
371: --
372: Begin
373: hr_utility.set_location('Entering:'||l_proc, 5);
374: --
375: -- Call conversion function to turn arguments into the
376: -- p_rec structure.
377: --

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

423: --
424: p_delivery_method_id := l_rec.delivery_method_id;
425: p_object_version_number := l_rec.object_version_number;
426: --
427: hr_utility.set_location(' Leaving:'||l_proc, 10);
428: End ins;
429: --
430: end per_pdm_ins;