DBA Data[Home] [Help]

APPS.BEN_XCC_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_CRIT_CMBN_FK1') Then
37: ben_utility.child_exists_error(p_table_name => 'BEN_EXT_CRIT_CMBN');
38: ElsIf (p_constraint_name = 'BEN_EXT_CRIT_CMBN_PK') Then

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

234: l_proc varchar2(72) := g_package||'convert_args';
235: --
236: Begin
237: --
238: hr_utility.set_location('Entering:'||l_proc, 5);
239: --
240: -- Convert arguments into local l_rec structure.
241: --
242: l_rec.ext_crit_cmbn_id := p_ext_crit_cmbn_id;

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

255: l_rec.object_version_number := p_object_version_number;
256: --
257: -- Return the plsql record structure.
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: Return(l_rec);
261: --
262: End convert_args;
263: --