DBA Data[Home] [Help]

APPS.GHR_PDC_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: --ghr_pdc_shd.g_api_dml := true; -- Set the api dml status
62: --

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

84: );
85: --
86: --ghr_pdc_shd.g_api_dml := false; -- Unset the api dml status
87: --
88: hr_utility.set_location(' Leaving:'||l_proc, 10);
89: Exception
90: When hr_api.check_integrity_violated Then
91: -- A check constraint has been violated
92: --ghr_pdc_shd.g_api_dml := false; -- Unset the api dml status

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

150: --
151: Cursor C_Sel1 is select ghr_pd_classifications_s.nextval from sys.dual;
152: --
153: Begin
154: hr_utility.set_location('Entering:'||l_proc, 5);
155: --
156: --
157: -- Select the next sequence number
158: --

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

159: Open C_Sel1;
160: Fetch C_Sel1 Into p_rec.pd_classification_id;
161: Close C_Sel1;
162: --
163: hr_utility.set_location(' Leaving:'||l_proc, 10);
164: End pre_insert;
165: --
166: -- ----------------------------------------------------------------------------
167: -- |-----------------------------< post_insert >------------------------------|

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

199: --
200: l_proc varchar2(72) := g_package||'post_insert';
201: --
202: Begin
203: hr_utility.set_location('Entering:'||l_proc, 5);
204: --
205: --
206: -- This is a hook point and the user hook for post_insert is called here.
207: --

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

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

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

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

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

276: l_rec ghr_pdc_shd.g_rec_type;
277: l_proc varchar2(72) := g_package||'ins';
278: --
279: Begin
280: hr_utility.set_location('Entering:'||l_proc, 5);
281: --
282: -- Call conversion function to turn arguments into the
283: -- p_rec structure.
284: --

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

335: --
336: p_pd_classification_id := l_rec.pd_classification_id;
337: p_object_version_number := l_rec.object_version_number;
338: --
339: hr_utility.set_location(' Leaving:'||l_proc, 10);
340: End ins;
341: --
342: end ghr_pdc_ins;