DBA Data[Home] [Help]

APPS.SSP_MAT_SHD dependencies on HR_UTILITY

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

14: --
15: l_proc varchar2(72) := g_package||'return_api_dml_status';
16: --
17: Begin
18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);
23: End return_api_dml_status;
24: --
25: -- ----------------------------------------------------------------------------
26: -- |---------------------------< constraint_error >---------------------------|

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

30: --
31: l_proc varchar2(72) := g_package||'constraint_error';
32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'SSP_MAT_NOTE_OF_BIRTH_TOO_SOON') Then
37: fnd_message.set_name ('SSP', 'SSP_35012_EARLY_BIRTH_NOTIFIC');
38: --

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

73: End If;
74: --
75: fnd_message.raise_error;
76: --
77: hr_utility.set_location(' Leaving:'||l_proc, 10);
78: End constraint_error;
79: --
80: -- ----------------------------------------------------------------------------
81: -- |-----------------------------< api_updating >-----------------------------|

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

171: l_proc varchar2(72) := g_package||'api_updating';
172: l_fct_ret boolean;
173: --
174: Begin
175: hr_utility.set_location('Entering:'||l_proc, 5);
176: --
177: If (
178: p_maternity_id is null and
179: p_object_version_number is null

Line 191: hr_utility.set_location(l_proc, 10);

187: If (
188: p_maternity_id = g_old_rec.maternity_id and
189: p_object_version_number = g_old_rec.object_version_number
190: ) Then
191: hr_utility.set_location(l_proc, 10);
192: --
193: -- The g_old_rec is current therefore we must
194: -- set the returning function to true
195: --

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

212: If (p_object_version_number <> g_old_rec.object_version_number) Then
213: fnd_message.set_name ('PAY', 'HR_7155_OBJECT_INVALID');
214: fnd_message.raise_error;
215: End If;
216: hr_utility.set_location(l_proc, 15);
217: l_fct_ret := true;
218: End If;
219: End If;
220: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

216: hr_utility.set_location(l_proc, 15);
217: l_fct_ret := true;
218: End If;
219: End If;
220: hr_utility.set_location(' Leaving:'||l_proc, 20);
221: Return (l_fct_ret);
222: --
223: End api_updating;
224: --

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

314: --
315: l_proc varchar2(72) := g_package||'lck';
316: --
317: Begin
318: hr_utility.set_location('Entering:'||l_proc, 5);
319: --
320: -- Add any mandatory argument checking here:
321: -- Example:
322: -- hr_api.mandatory_arg_error

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

339: fnd_message.set_name ('PAY', 'HR_7155_OBJECT_INVALID');
340: fnd_message.raise_error;
341: End If;
342: --
343: hr_utility.set_location(' Leaving:'||l_proc, 10);
344: --
345: -- We need to trap the ORA LOCK exception
346: --
347: Exception

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

441: l_proc varchar2(72) := g_package||'convert_args';
442: --
443: Begin
444: --
445: hr_utility.set_location('Entering:'||l_proc, 5);
446: --
447: -- Convert arguments into local l_rec structure.
448: --
449: l_rec.maternity_id := p_maternity_id;

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

524:
525: --
526: -- Return the plsql record structure.
527: --
528: hr_utility.set_location(' Leaving:'||l_proc, 10);
529: Return(l_rec);
530: --
531: End convert_args;
532: --