DBA Data[Home] [Help]

APPS.PQH_BGM_INS dependencies on HR_UTILITY

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

51: --
52: l_proc varchar2(72) := g_package||'insert_dml';
53: --
54: Begin
55: hr_utility.set_location('Entering:'||l_proc, 5);
56: p_rec.object_version_number := 1; -- Initialise the object version
57: --
58: --
59: -- Insert the row into: pqh_budget_gl_flex_maps

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

73: p_rec.object_version_number
74: );
75: --
76: --
77: hr_utility.set_location(' Leaving:'||l_proc, 10);
78: Exception
79: When hr_api.check_integrity_violated Then
80: -- A check constraint has been violated
81: pqh_bgm_shd.constraint_error

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

135: --
136: Cursor C_Sel1 is select pqh_budget_gl_flex_maps_s.nextval from sys.dual;
137: --
138: Begin
139: hr_utility.set_location('Entering:'||l_proc, 5);
140: --
141: --
142: -- Select the next sequence number
143: --

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

144: Open C_Sel1;
145: Fetch C_Sel1 Into p_rec.budget_gl_flex_map_id;
146: Close C_Sel1;
147: --
148: hr_utility.set_location(' Leaving:'||l_proc, 10);
149: End pre_insert;
150: --
151: -- ----------------------------------------------------------------------------
152: -- |-----------------------------< post_insert >------------------------------|

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

184: --
185: l_proc varchar2(72) := g_package||'post_insert';
186: --
187: Begin
188: hr_utility.set_location('Entering:'||l_proc, 5);
189: --
190: --
191: -- Start of API User Hook for post_insert.
192: --

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

213: --
214: -- End of API User Hook for post_insert.
215: --
216: --
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: End post_insert;
219: --
220: -- ----------------------------------------------------------------------------
221: -- |---------------------------------< ins >----------------------------------|

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

227: --
228: l_proc varchar2(72) := g_package||'ins';
229: --
230: Begin
231: hr_utility.set_location('Entering:'||l_proc, 5);
232: --
233: -- Call the supporting insert validate operations
234: --
235: pqh_bgm_bus.insert_validate(p_rec);

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

262: l_rec pqh_bgm_shd.g_rec_type;
263: l_proc varchar2(72) := g_package||'ins';
264: --
265: Begin
266: hr_utility.set_location('Entering:'||l_proc, 5);
267: --
268: -- Call conversion function to turn arguments into the
269: -- p_rec structure.
270: --

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

288: --
289: p_budget_gl_flex_map_id := l_rec.budget_gl_flex_map_id;
290: p_object_version_number := l_rec.object_version_number;
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 10);
293: End ins;
294: --
295: end pqh_bgm_ins;