DBA Data[Home] [Help]

APPS.PQH_RFT_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: PER_RIC_PKG.chk_integrity(

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

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

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

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

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

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

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

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

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

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

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

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

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

272: l_rec pqh_rft_shd.g_rec_type;
273: l_proc varchar2(72) := g_package||'ins';
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);
277: --
278: -- Call conversion function to turn arguments into the
279: -- p_rec structure.
280: --

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

298: --
299: p_ref_template_id := l_rec.ref_template_id;
300: p_object_version_number := l_rec.object_version_number;
301: --
302: hr_utility.set_location(' Leaving:'||l_proc, 10);
303: End ins;
304: --
305: end pqh_rft_ins;