DBA Data[Home] [Help]

APPS.HR_LOT_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: --
54: -- Insert the row into: hr_locations_all_tl
55: --
56: insert into hr_locations_all_tl

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

67: p_rec.location_code,
68: p_rec.description
69: );
70: --
71: hr_utility.set_location(' Leaving:'||l_proc, 10);
72: Exception
73: When hr_api.check_integrity_violated Then
74: -- A check constraint has been violated
75: hr_lot_shd.constraint_error

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

130: --
131: --
132: --
133: Begin
134: hr_utility.set_location('Entering:'||l_proc, 5);
135: --
136: p_rec.location_id := p_location_id;
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

134: hr_utility.set_location('Entering:'||l_proc, 5);
135: --
136: p_rec.location_id := p_location_id;
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 10);
139: End pre_insert;
140: --
141: -- ----------------------------------------------------------------------------
142: -- |-----------------------------< post_insert >------------------------------|

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

174: --
175: l_proc varchar2(72) := g_package||'post_insert';
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: --
181: -- Start of API User Hook for post_insert.
182: --

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

203: --
204: -- End of API User Hook for post_insert.
205: --
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: End post_insert;
209: --
210: -- ----------------------------------------------------------------------------
211: -- |---------------------------------< ins >----------------------------------|

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

219: --
220: l_proc varchar2(72) := g_package||'ins';
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: --
225: -- Call the supporting insert validate operations
226: --
227: hr_lot_bus.insert_validate(p_rec, p_business_group_id);

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

255: l_rec hr_lot_shd.g_rec_type;
256: l_proc varchar2(72) := g_package||'ins';
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: -- Call conversion function to turn arguments into the
262: -- p_rec structure.
263: --

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

284: p_location_id,
285: p_business_group_id);
286: --
287: --
288: hr_utility.set_location(' Leaving:'||l_proc, 10);
289: End ins;
290: --
291: -- -------------------------------------------------------------------------
292: -- |------------------------------< ins_tl >-------------------------------|

Line 318: hr_utility.set_location('Entering:'||l_proc, 10);

314: l_proc varchar2(72) := g_package||'ins_tl';
315: l_inserted_anything boolean := false;
316: --
317: Begin
318: hr_utility.set_location('Entering:'||l_proc, 10);
319: --
320: -- Insert a row for the base language and every installed language.
321: --
322: hr_utility.set_location(l_proc, 15);

Line 322: hr_utility.set_location(l_proc, 15);

318: hr_utility.set_location('Entering:'||l_proc, 10);
319: --
320: -- Insert a row for the base language and every installed language.
321: --
322: hr_utility.set_location(l_proc, 15);
323: for l_lang in csr_ins_langs loop
324: ins
325: (p_location_id => p_location_id
326: ,p_language => l_lang.language_code

Line 336: hr_utility.set_message(800, 'PER_52517_NO_MLS_INSERTS');

332: l_inserted_anything := true;
333: end loop;
334: --
335: if not l_inserted_anything then
336: hr_utility.set_message(800, 'PER_52517_NO_MLS_INSERTS');
337: hr_utility.raise_error;
338: end if;
339: --
340: -- Finally, set the global g_loc_bg_id for use when updating.

Line 337: hr_utility.raise_error;

333: end loop;
334: --
335: if not l_inserted_anything then
336: hr_utility.set_message(800, 'PER_52517_NO_MLS_INSERTS');
337: hr_utility.raise_error;
338: end if;
339: --
340: -- Finally, set the global g_loc_bg_id for use when updating.
341: --

Line 344: hr_utility.set_location(' Leaving:'||l_proc, 20);

340: -- Finally, set the global g_loc_bg_id for use when updating.
341: --
342: hr_lot_shd.set_value_business_group_id (p_business_group_id => p_business_group_id);
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 20);
345: End ins_tl;
346: --
347: end hr_lot_ins;