DBA Data[Home] [Help]

APPS.HR_PPU_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: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: hr_ppu_shd.g_api_dml := true; -- Set the api dml status
62: --

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

78: );
79: --
80: hr_ppu_shd.g_api_dml := false; -- Unset the api dml status
81: --
82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: hr_ppu_shd.g_api_dml := false; -- Unset the api dml status

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

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

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

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

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

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

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

196: Begin
197: hr_utility.set_location('Entering:'||l_proc, 5);
198: --
199: --
200: hr_utility.set_location(' Leaving:'||l_proc, 10);
201: End post_insert;
202: --
203: -- ----------------------------------------------------------------------------
204: -- |---------------------------------< 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 276: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

298: --
299: p_purpose_usage_id := l_rec.purpose_usage_id;
300: p_object_version_number := l_rec.object_version_number;
301: --
302: hr_utility.set_location(' Leaving:'||l_proc, 10);
303: End ins;
304: --
305: end hr_ppu_ins;