DBA Data[Home] [Help]

APPS.PER_BPD_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_PAYMENT_DETAILS_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 112: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

313: l_proc varchar2(72) := g_package||'convert_args';
314: --
315: Begin
316: --
317: hr_utility.set_location('Entering:'||l_proc, 5);
318: --
319: -- Convert arguments into local l_rec structure.
320: --
321: l_rec.payment_detail_id := p_payment_detail_id;

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

360: l_rec.bpd_attribute30 := p_bpd_attribute30;
361: --
362: -- Return the plsql record structure.
363: --
364: hr_utility.set_location(' Leaving:'||l_proc, 10);
365: Return(l_rec);
366: --
367: End convert_args;
368: --