DBA Data[Home] [Help]

APPS.GHR_NLA_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: --
56: -- Insert the row into: ghr_noac_las

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

78: p_rec.valid_second_lac_flag
79: );
80: --
81: --
82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: ghr_nla_shd.constraint_error

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

140: --
141: Cursor C_Sel1 is select ghr_noac_las_s.nextval from sys.dual;
142: --
143: Begin
144: hr_utility.set_location('Entering:'||l_proc, 5);
145: --
146: --
147: -- Select the next sequence number
148: --

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

149: Open C_Sel1;
150: Fetch C_Sel1 Into p_rec.noac_la_id;
151: Close C_Sel1;
152: --
153: hr_utility.set_location(' Leaving:'||l_proc, 10);
154: End pre_insert;
155: --
156: -- ----------------------------------------------------------------------------
157: -- |-----------------------------< post_insert >------------------------------|

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

190: --
191: l_proc varchar2(72) := g_package||'post_insert';
192: --
193: Begin
194: hr_utility.set_location('Entering:'||l_proc, 5);
195: --
196: --
197: -- Start of API User Hook for post_insert.
198: --

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

224: --
225: -- End of API User Hook for post_insert.
226: --
227: --
228: hr_utility.set_location(' Leaving:'||l_proc, 10);
229: End post_insert;
230: --
231: -- ----------------------------------------------------------------------------
232: -- |---------------------------------< ins >----------------------------------|

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

239: --
240: l_proc varchar2(72) := g_package||'ins';
241: --
242: Begin
243: hr_utility.set_location('Entering:'||l_proc, 5);
244: --
245: -- Call the supporting insert validate operations
246: --
247: ghr_nla_bus.insert_validate(p_rec

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

281: l_rec ghr_nla_shd.g_rec_type;
282: l_proc varchar2(72) := g_package||'ins';
283: --
284: Begin
285: hr_utility.set_location('Entering:'||l_proc, 5);
286: --
287: -- Call conversion function to turn arguments into the
288: -- p_rec structure.
289: --

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

312: --
313: p_noac_la_id := l_rec.noac_la_id;
314: p_object_version_number := l_rec.object_version_number;
315: --
316: hr_utility.set_location(' Leaving:'||l_proc, 10);
317: End ins;
318: --
319: end ghr_nla_ins;