DBA Data[Home] [Help]

APPS.PER_BPR_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_PAYROLL_RUNS_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 111: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

310: l_proc varchar2(72) := g_package||'convert_args';
311: --
312: Begin
313: --
314: hr_utility.set_location('Entering:'||l_proc, 5);
315: --
316: -- Convert arguments into local l_rec structure.
317: --
318: l_rec.payroll_run_id := p_payroll_run_id;

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

356: l_rec.bpr_attribute30 := p_bpr_attribute30;
357: --
358: -- Return the plsql record structure.
359: --
360: hr_utility.set_location(' Leaving:'||l_proc, 10);
361: Return(l_rec);
362: --
363: End convert_args;
364: --