DBA Data[Home] [Help]

APPS.BEN_HWF_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 = 'BEN_HRS_WKD_IN_PERD_FCTR_PK') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

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

48: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
49: fnd_message.raise_error;
50: End If;
51: --
52: hr_utility.set_location(' Leaving:'||l_proc, 10);
53: End constraint_error;
54: --
55: -- ----------------------------------------------------------------------------
56: -- |-----------------------------< api_updating >-----------------------------|

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

122: l_proc varchar2(72) := g_package||'api_updating';
123: l_fct_ret boolean;
124: --
125: Begin
126: hr_utility.set_location('Entering:'||l_proc, 5);
127: --
128: If (
129: p_hrs_wkd_in_perd_fctr_id is null and
130: p_object_version_number is null

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

138: If (
139: p_hrs_wkd_in_perd_fctr_id = g_old_rec.hrs_wkd_in_perd_fctr_id and
140: p_object_version_number = g_old_rec.object_version_number
141: ) Then
142: hr_utility.set_location(l_proc, 10);
143: --
144: -- The g_old_rec is current therefore we must
145: -- set the returning function to true
146: --

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

163: If (p_object_version_number <> g_old_rec.object_version_number) Then
164: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
165: fnd_message.raise_error;
166: End If;
167: hr_utility.set_location(l_proc, 15);
168: l_fct_ret := true;
169: End If;
170: End If;
171: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

167: hr_utility.set_location(l_proc, 15);
168: l_fct_ret := true;
169: End If;
170: End If;
171: hr_utility.set_location(' Leaving:'||l_proc, 20);
172: Return (l_fct_ret);
173: --
174: End api_updating;
175: --

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

241: --
242: l_proc varchar2(72) := g_package||'lck';
243: --
244: Begin
245: hr_utility.set_location('Entering:'||l_proc, 5);
246: --
247: -- Add any mandatory argument checking here:
248: -- Example:
249: -- hr_api.mandatory_arg_error

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

266: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
267: fnd_message.raise_error;
268: End If;
269: --
270: hr_utility.set_location(' Leaving:'||l_proc, 10);
271: --
272: -- We need to trap the ORA LOCK exception
273: --
274: Exception

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

344: l_proc varchar2(72) := g_package||'convert_args';
345: --
346: Begin
347: --
348: hr_utility.set_location('Entering:'||l_proc, 5);
349: --
350: -- Convert arguments into local l_rec structure.
351: --
352: l_rec.hrs_wkd_in_perd_fctr_id := p_hrs_wkd_in_perd_fctr_id;

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

401: l_rec.object_version_number := p_object_version_number;
402: --
403: -- Return the plsql record structure.
404: --
405: hr_utility.set_location(' Leaving:'||l_proc, 10);
406: Return(l_rec);
407: --
408: End convert_args;
409: --