DBA Data[Home] [Help]

APPS.PQH_WFS_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: pqh_worksheet_fund_srcs

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_wfs_shd.constraint_error

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

142: --
143: Cursor C_Sel1 is select pqh_worksheet_fund_srcs_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.worksheet_fund_src_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 229: hr_utility.set_location(' Leaving:'||l_proc, 10);

225: --
226: -- End of API User Hook for post_insert.
227: --
228: --
229: hr_utility.set_location(' Leaving:'||l_proc, 10);
230: End post_insert;
231: --
232: -- ----------------------------------------------------------------------------
233: -- |---------------------------------< 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: pqh_wfs_bus.insert_validate(p_rec);

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

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

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

310: --
311: p_worksheet_fund_src_id := l_rec.worksheet_fund_src_id;
312: p_object_version_number := l_rec.object_version_number;
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 10);
315: End ins;
316: --
317: end pqh_wfs_ins;