DBA Data[Home] [Help]

APPS.PQH_ATT_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 103: hr_utility.set_location(' Leaving:'||l_proc, 10);

99: p_rec.decode_function_name
100: );
101: --
102: --
103: hr_utility.set_location(' Leaving:'||l_proc, 10);
104: Exception
105: When hr_api.check_integrity_violated Then
106: -- A check constraint has been violated
107: pqh_att_shd.constraint_error

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

161: --
162: Cursor C_Sel1 is select pqh_attributes_s.nextval from sys.dual;
163: --
164: Begin
165: hr_utility.set_location('Entering:'||l_proc, 5);
166: --
167: --
168: -- Select the next sequence number
169: --

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

170: Open C_Sel1;
171: Fetch C_Sel1 Into p_rec.attribute_id;
172: Close C_Sel1;
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 10);
175: End pre_insert;
176: --
177: -- ----------------------------------------------------------------------------
178: -- |-----------------------------< post_insert >------------------------------|

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

211: --
212: l_proc varchar2(72) := g_package||'post_insert';
213: --
214: Begin
215: hr_utility.set_location('Entering:'||l_proc, 5);
216: --
217: --
218: -- Start of API User Hook for post_insert.
219: --

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

248: --
249: -- End of API User Hook for post_insert.
250: --
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 10);
253: End post_insert;
254: --
255: -- ----------------------------------------------------------------------------
256: -- |---------------------------------< ins >----------------------------------|

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

263: --
264: l_proc varchar2(72) := g_package||'ins';
265: --
266: Begin
267: hr_utility.set_location('Entering:'||l_proc, 5);
268: --
269: -- Call the supporting insert validate operations
270: --
271: pqh_att_bus.insert_validate(p_rec

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

308: l_rec pqh_att_shd.g_rec_type;
309: l_proc varchar2(72) := g_package||'ins';
310: --
311: Begin
312: hr_utility.set_location('Entering:'||l_proc, 5);
313: --
314: -- Call conversion function to turn arguments into the
315: -- p_rec structure.
316: --

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

342: --
343: p_attribute_id := l_rec.attribute_id;
344: p_object_version_number := l_rec.object_version_number;
345: --
346: hr_utility.set_location(' Leaving:'||l_proc, 10);
347: End ins;
348: --
349: end pqh_att_ins;