DBA Data[Home] [Help]

APPS.PQH_RST_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: -- Added the following code as a part of Zero Downtime Patching Project.

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

106: p_rec.status
107: );
108: --
109: --
110: hr_utility.set_location(' Leaving:'||l_proc, 10);
111: Exception
112: When hr_api.check_integrity_violated Then
113: -- A check constraint has been violated
114: pqh_rst_shd.constraint_error

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

170: Cursor C_Sel1 is select pqh_rule_sets_s.nextval from sys.dual;
171: --
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: open C_Sel1;
177: fetch C_Sel1 into p_rec.rule_set_id ;
178: close C_Sel1;

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

176: open C_Sel1;
177: fetch C_Sel1 into p_rec.rule_set_id ;
178: close C_Sel1;
179: --
180: hr_utility.set_location(' Leaving:'||l_proc, 10);
181: End pre_insert;
182: --
183: -- ----------------------------------------------------------------------------
184: -- |-----------------------------< post_insert >------------------------------|

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

217: --
218: l_proc varchar2(72) := g_package||'post_insert';
219: --
220: Begin
221: hr_utility.set_location('Entering:'||l_proc, 5);
222: --
223: --
224: -- Start of API User Hook for post_insert.
225: --

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

256: --
257: -- End of API User Hook for post_insert.
258: --
259: --
260: hr_utility.set_location(' Leaving:'||l_proc, 10);
261: End post_insert;
262: --
263: -- ----------------------------------------------------------------------------
264: -- |---------------------------------< ins >----------------------------------|

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

271: --
272: l_proc varchar2(72) := g_package||'ins';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: -- Call the supporting insert validate operations
278: --
279: pqh_rst_bus.insert_validate(p_rec

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

318: l_rec pqh_rst_shd.g_rec_type;
319: l_proc varchar2(72) := g_package||'ins';
320: --
321: Begin
322: hr_utility.set_location('Entering:'||l_proc, 5);
323: --
324: -- Call conversion function to turn arguments into the
325: -- p_rec structure.
326: --

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

354: --
355: p_rule_set_id := l_rec.rule_set_id;
356: p_object_version_number := l_rec.object_version_number;
357: --
358: hr_utility.set_location(' Leaving:'||l_proc, 10);
359: End ins;
360: --
361: end pqh_rst_ins;