DBA Data[Home] [Help]

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

33: -- *** NEW_MESSAGE_REQUIRED ***
34: -- Following messages must be moved from SSP to PAY
35: --
36: Begin
37: hr_utility.set_location('Entering:'||l_proc, 5);
38: --
39: If (p_constraint_name = 'HR_PAB_PK') Then
40: FND_MESSAGE.SET_NAME('PAY', 'HR_51022_HR_INV_PRIMARY_KEY');
41: fnd_message.raise_error;

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

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

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

81: l_proc varchar2(72) := g_package||'api_updating';
82: l_fct_ret boolean;
83: --
84: Begin
85: hr_utility.set_location('Entering:'||l_proc, 5);
86: --
87: If (
88: p_pattern_bit_id is null and
89: p_object_version_number is null

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

97: If (
98: p_pattern_bit_id = g_old_rec.pattern_bit_id and
99: p_object_version_number = g_old_rec.object_version_number
100: ) Then
101: hr_utility.set_location(l_proc, 10);
102: --
103: -- The g_old_rec is current therefore we must
104: -- set the returning function to true
105: --

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

122: If (p_object_version_number <> g_old_rec.object_version_number) Then
123: FND_MESSAGE.SET_NAME('PAY', 'HR_51026_HR_LOCKED_OBJ');
124: fnd_message.raise_error;
125: End If;
126: hr_utility.set_location(l_proc, 15);
127: l_fct_ret := true;
128: End If;
129: End If;
130: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

126: hr_utility.set_location(l_proc, 15);
127: l_fct_ret := true;
128: End If;
129: End If;
130: hr_utility.set_location(' Leaving:'||l_proc, 20);
131: Return (l_fct_ret);
132: --
133: End api_updating;
134: --

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

156: --
157: l_proc varchar2(72) := g_package||'lck';
158: --
159: Begin
160: hr_utility.set_location('Entering:'||l_proc, 5);
161: --
162: -- Add any mandatory argument checking here:
163: -- Example:
164: -- hr_api.mandatory_arg_error

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

181: FND_MESSAGE.SET_NAME('PAY', 'HR_51027_HR_INV_OBJ');
182: fnd_message.raise_error;
183: End If;
184: --
185: hr_utility.set_location(' Leaving:'||l_proc, 10);
186: --
187: -- We need to trap the ORA LOCK exception
188: --
189: Exception

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

214: l_proc varchar2(72) := g_package||'convert_args';
215: --
216: Begin
217: --
218: hr_utility.set_location('Entering:'||l_proc, 5);
219: --
220: -- Convert arguments into local l_rec structure.
221: --
222: l_rec.pattern_bit_id := p_pattern_bit_id;

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

227: l_rec.object_version_number := p_object_version_number;
228: --
229: -- Return the plsql record structure.
230: --
231: hr_utility.set_location(' Leaving:'||l_proc, 10);
232: Return(l_rec);
233: --
234: End convert_args;
235: --