DBA Data[Home] [Help]

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

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

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

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

85: l_proc varchar2(72) := g_package||'api_updating';
86: l_fct_ret boolean;
87: --
88: Begin
89: hr_utility.set_location('Entering:'||l_proc, 5);
90: --
91: If (
92: p_ext_rslt_err_id is null and
93: p_object_version_number is null

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

101: If (
102: p_ext_rslt_err_id = g_old_rec.ext_rslt_err_id and
103: p_object_version_number = g_old_rec.object_version_number
104: ) Then
105: hr_utility.set_location(l_proc, 10);
106: --
107: -- The g_old_rec is current therefore we must
108: -- set the returning function to true
109: --

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

126: If (p_object_version_number <> g_old_rec.object_version_number) Then
127: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
128: fnd_message.raise_error;
129: End If;
130: hr_utility.set_location(l_proc, 15);
131: l_fct_ret := true;
132: End If;
133: End If;
134: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

130: hr_utility.set_location(l_proc, 15);
131: l_fct_ret := true;
132: End If;
133: End If;
134: hr_utility.set_location(' Leaving:'||l_proc, 20);
135: Return (l_fct_ret);
136: --
137: End api_updating;
138: --

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

166: --
167: l_proc varchar2(72) := g_package||'lck';
168: --
169: Begin
170: hr_utility.set_location('Entering:'||l_proc, 5);
171: --
172: -- Add any mandatory argument checking here:
173: -- Example:
174: -- hr_api.mandatory_arg_error

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

191: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
192: fnd_message.raise_error;
193: End If;
194: --
195: hr_utility.set_location(' Leaving:'||l_proc, 10);
196: --
197: -- We need to trap the ORA LOCK exception
198: --
199: Exception

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

231: l_proc varchar2(72) := g_package||'convert_args';
232: --
233: Begin
234: --
235: hr_utility.set_location('Entering:'||l_proc, 5);
236: --
237: -- Convert arguments into local l_rec structure.
238: --
239: l_rec.ext_rslt_err_id := p_ext_rslt_err_id;

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

250: l_rec.ext_rslt_id := p_ext_rslt_id;
251: --
252: -- Return the plsql record structure.
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 10);
255: Return(l_rec);
256: --
257: End convert_args;
258: --