DBA Data[Home] [Help]

APPS.PER_BPA_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_PROCESSED_ASSIGNS_FK1') Then
23: fnd_message.set_name('PER', 'HR_52935_NO_RUN_AVAIL');
24: fnd_message.set_token('PROCEDURE', l_proc);

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

50: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
51: fnd_message.raise_error;
52: End If;
53: --
54: hr_utility.set_location(' Leaving:'||l_proc, 10);
55: End constraint_error;
56: --
57: -- ----------------------------------------------------------------------------
58: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

123: Else
124: If (p_processed_assignment_id = g_old_rec.processed_assignment_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 215: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

302: l_proc varchar2(72) := g_package||'convert_args';
303: --
304: Begin
305: --
306: hr_utility.set_location('Entering:'||l_proc, 5);
307: --
308: -- Convert arguments into local l_rec structure.
309: --
310: l_rec.processed_assignment_id := p_processed_assignment_id;

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

344: l_rec.bpa_attribute30 := p_bpa_attribute30;
345: --
346: -- Return the plsql record structure.
347: --
348: hr_utility.set_location(' Leaving:'||l_proc, 10);
349: Return(l_rec);
350: --
351: End convert_args;
352: --