DBA Data[Home] [Help]

APPS.PER_BBA_SHD dependencies on HR_UTILITY

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

15: --
16: l_proc varchar2(72) := g_package||'constraint_error';
17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PER_BF_BALANCE_AMOUNTS_FK1') Then
22: fnd_message.set_name('PER', 'PER_289357_BF_BG_ID_INVALID');
23: 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 114: hr_utility.set_location('Entering:'||l_proc, 5);

110: l_proc varchar2(72) := g_package||'api_updating';
111: l_fct_ret boolean;
112: --
113: Begin
114: hr_utility.set_location('Entering:'||l_proc, 5);
115: --
116: If (
117: p_balance_amount_id is null and
118: p_object_version_number is null

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

126: If (
127: p_balance_amount_id = g_old_rec.balance_amount_id and
128: p_object_version_number = g_old_rec.object_version_number
129: ) Then
130: hr_utility.set_location(l_proc, 10);
131: --
132: -- The g_old_rec is current therefore we must
133: -- set the returning function to true
134: --

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

151: If (p_object_version_number <> g_old_rec.object_version_number) Then
152: fnd_message.set_name('PER', 'HR_7155_OBJECT_INVALID');
153: fnd_message.raise_error;
154: End If;
155: hr_utility.set_location(l_proc, 15);
156: l_fct_ret := true;
157: End If;
158: End If;
159: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

155: hr_utility.set_location(l_proc, 15);
156: l_fct_ret := true;
157: End If;
158: End If;
159: hr_utility.set_location(' Leaving:'||l_proc, 20);
160: Return (l_fct_ret);
161: --
162: End api_updating;
163: --

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

221: --
222: l_proc varchar2(72) := g_package||'lck';
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: -- Add any mandatory argument checking here:
228: -- Example:
229: -- hr_api.mandatory_arg_error

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

249: fnd_message.set_name('PER', 'HR_7155_OBJECT_INVALID');
250: fnd_message.raise_error;
251: End If;
252: --
253: hr_utility.set_location(' Leaving:'||l_proc, 10);
254: --
255: -- We need to trap the ORA LOCK exception
256: --
257: Exception

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

320: l_proc varchar2(72) := g_package||'convert_args';
321: --
322: Begin
323: --
324: hr_utility.set_location('Entering:'||l_proc, 5);
325: --
326: -- Convert arguments into local l_rec structure.
327: --
328: l_rec.balance_amount_id := p_balance_amount_id;

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

369: l_rec.bba_attribute30 := p_bba_attribute30;
370: --
371: -- Return the plsql record structure.
372: --
373: hr_utility.set_location(' Leaving:'||l_proc, 10);
374: Return(l_rec);
375: --
376: End convert_args;
377: --