DBA Data[Home] [Help]

APPS.PER_CHK_SHD dependencies on HR_UTILITY

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

14: --
15: l_proc varchar2(72) := g_package||'return_api_dml_status';
16: --
17: Begin
18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);
23: End return_api_dml_status;
24: --
25: -- ----------------------------------------------------------------------------
26: -- |---------------------------< constraint_error >---------------------------|

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

30: --
31: l_proc varchar2(72) := g_package||'constraint_error';
32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_CHECKLIST_ITEMS_PK') Then
37: fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
38: fnd_message.raise_error;

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 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_checklist_item_id is null and
116: p_object_version_number is null

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

124: If (
125: p_checklist_item_id = g_old_rec.checklist_item_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('PAY', '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 246: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

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