DBA Data[Home] [Help]

APPS.HR_ABM_INS dependencies on HR_UTILITY

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

54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: --
61: hr_abm_shd.g_api_dml := true; -- Set the api dml status
62: --

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

84: );
85: --
86: hr_abm_shd.g_api_dml := false; -- Unset the api dml status
87: --
88: hr_utility.set_location(' Leaving:'||l_proc, 10);
89: Exception
90: When hr_api.check_integrity_violated Then
91: -- A check constraint has been violated
92: hr_abm_shd.g_api_dml := false; -- Unset the api dml status

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

150: --
151: Cursor C_Sel1 is select hr_api_batch_message_lines_s.nextval from sys.dual;
152: --
153: Begin
154: hr_utility.set_location('Entering:'||l_proc, 5);
155: --
156: --
157: -- Select the next sequence number
158: --

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

159: Open C_Sel1;
160: Fetch C_Sel1 Into p_rec.line_id;
161: Close C_Sel1;
162: --
163: hr_utility.set_location(' Leaving:'||l_proc, 10);
164: End pre_insert;
165: --
166: -- ----------------------------------------------------------------------------
167: -- |---------------------------------< ins >----------------------------------|

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

174: --
175: l_proc varchar2(72) := g_package||'ins';
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: -- Determine if the business process is to be validated.
181: --
182: If p_validate then

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

203: If p_validate then
204: Raise HR_Api.Validate_Enabled;
205: End If;
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: Exception
209: When HR_Api.Validate_Enabled Then
210: --
211: -- As the Validate_Enabled exception has been raised

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

233: l_rec hr_abm_shd.g_rec_type;
234: l_proc varchar2(72) := g_package||'ins';
235: --
236: Begin
237: hr_utility.set_location('Entering:'||l_proc, 5);
238: --
239: -- Call conversion function to turn arguments into the
240: -- p_rec structure.
241: --

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

262: --
263: p_line_id := l_rec.line_id;
264: --
265: --
266: hr_utility.set_location(' Leaving:'||l_proc, 10);
267: End ins;
268: --
269: end hr_abm_ins;