DBA Data[Home] [Help]

APPS.PER_BBT_SHD dependencies on HR_UTILITY

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

16: --
17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: hr_utility.set_location('Entering:'||l_proc, 5);
21: --
22: If (p_constraint_name = 'PER_BF_BALANCE_TYPES_FK1') Then
23: fnd_message.set_name('PER', 'PER_289357_BF_BG_ID_INVALID');
24: fnd_message.set_token('PROCEDURE', l_proc);

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

45: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
46: fnd_message.raise_error;
47: End If;
48: --
49: hr_utility.set_location(' Leaving:'||l_proc, 10);
50: End constraint_error;
51: --
52: -- ----------------------------------------------------------------------------
53: -- |-----------------------------< 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 (p_balance_type_id is null and
87: p_object_version_number is null
88: ) Then

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

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

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

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

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

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

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

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

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

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

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

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

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

243: l_rec.object_version_number := p_object_version_number;
244: --
245: -- Return the plsql record structure.
246: --
247: hr_utility.set_location(' Leaving:'||l_proc, 10);
248: Return(l_rec);
249: --
250: End convert_args;
251: --