DBA Data[Home] [Help]

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

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

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

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

80: l_proc varchar2(72) := g_package||'api_updating';
81: l_fct_ret boolean;
82: --
83: Begin
84: hr_utility.set_location('Entering:'||l_proc, 5);
85: --
86: If (
87: p_ext_incl_data_elmt_id is null and
88: p_object_version_number is null

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

96: If (
97: p_ext_incl_data_elmt_id = g_old_rec.ext_incl_data_elmt_id and
98: p_object_version_number = g_old_rec.object_version_number
99: ) Then
100: hr_utility.set_location(l_proc, 10);
101: --
102: -- The g_old_rec is current therefore we must
103: -- set the returning function to true
104: --

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

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

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

125: hr_utility.set_location(l_proc, 15);
126: l_fct_ret := true;
127: End If;
128: End If;
129: hr_utility.set_location(' Leaving:'||l_proc, 20);
130: Return (l_fct_ret);
131: --
132: End api_updating;
133: --

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

161: --
162: l_proc varchar2(72) := g_package||'lck';
163: --
164: Begin
165: hr_utility.set_location('Entering:'||l_proc, 5);
166: --
167: -- Add any mandatory argument checking here:
168: -- Example:
169: -- hr_api.mandatory_arg_error

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

186: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
187: fnd_message.raise_error;
188: End If;
189: --
190: hr_utility.set_location(' Leaving:'||l_proc, 10);
191: --
192: -- We need to trap the ORA LOCK exception
193: --
194: Exception

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

226: l_proc varchar2(72) := g_package||'convert_args';
227: --
228: Begin
229: --
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: --
232: -- Convert arguments into local l_rec structure.
233: --
234: l_rec.ext_incl_data_elmt_id := p_ext_incl_data_elmt_id;

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

245: l_rec.ext_data_elmt_in_rcd_id := p_ext_data_elmt_in_rcd_id;
246: --
247: -- Return the plsql record structure.
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 10);
250: Return(l_rec);
251: --
252: End convert_args;
253: --