DBA Data[Home] [Help]

APPS.PAY_MGB_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: pay_mgb_shd.g_api_dml := true; -- Set the api dml status
62: --

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

80: );
81: --
82: pay_mgb_shd.g_api_dml := false; -- Unset the api dml status
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: pay_mgb_shd.g_api_dml := false; -- Unset the api dml status

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

146: --
147: Cursor C_Sel1 is select pay_magnetic_blocks_s.nextval from sys.dual;
148: --
149: Begin
150: hr_utility.set_location('Entering:'||l_proc, 5);
151: --
152: --
153: -- Select the next sequence number
154: --

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

155: Open C_Sel1;
156: Fetch C_Sel1 Into p_rec.magnetic_block_id;
157: Close C_Sel1;
158: --
159: hr_utility.set_location(' Leaving:'||l_proc, 10);
160: End pre_insert;
161: --
162: -- ----------------------------------------------------------------------------
163: -- |-----------------------------< post_insert >------------------------------|

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

195: --
196: l_proc varchar2(72) := g_package||'post_insert';
197: --
198: Begin
199: hr_utility.set_location('Entering:'||l_proc, 5);
200: --
201: hr_utility.set_location(' Leaving:'||l_proc, 10);
202: End post_insert;
203: --

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

197: --
198: Begin
199: hr_utility.set_location('Entering:'||l_proc, 5);
200: --
201: hr_utility.set_location(' Leaving:'||l_proc, 10);
202: End post_insert;
203: --
204: -- ----------------------------------------------------------------------------
205: -- |---------------------------------< ins >----------------------------------|

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

212: --
213: l_proc varchar2(72) := g_package||'ins';
214: --
215: Begin
216: hr_utility.set_location('Entering:'||l_proc, 5);
217: --
218: -- Determine if the business process is to be validated.
219: --
220: If p_validate then

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

245: If p_validate then
246: Raise HR_Api.Validate_Enabled;
247: End If;
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 10);
250: Exception
251: When HR_Api.Validate_Enabled Then
252: --
253: -- As the Validate_Enabled exception has been raised

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

273: l_rec pay_mgb_shd.g_rec_type;
274: l_proc varchar2(72) := g_package||'ins';
275: --
276: Begin
277: hr_utility.set_location('Entering:'||l_proc, 5);
278: --
279: -- Call conversion function to turn arguments into the
280: -- p_rec structure.
281: --

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

300: --
301: p_magnetic_block_id := l_rec.magnetic_block_id;
302: --
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End ins;
306: --
307: end pay_mgb_ins;