DBA Data[Home] [Help]

APPS.SSP_ERN_SHD dependencies on HR_UTILITY

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

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

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

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

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

30: --
31: l_proc varchar2(72) := g_package||'constraint_error';
32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 1);
35: --
36: If (p_constraint_name = 'SSP_EARNINGS_CALCULATIONS_PK') Then
37: fnd_message.set_name('SSP', 'SSP_35043_INVALID_PRIMARY_KEY');
38: ElsIf (p_constraint_name = 'SSP_EARNINGS_CALCULATIONS_UK1') Then

Line 47: hr_utility.set_location(' Leaving:'||l_proc, 100);

43: fnd_message.set_token ('CONSTRAINT_NAME',p_constraint_name);
44: End If;
45: --
46: fnd_message.raise_error;
47: hr_utility.set_location(' Leaving:'||l_proc, 100);
48: End constraint_error;
49: --
50: -- ----------------------------------------------------------------------------
51: -- |-----------------------------< api_updating >-----------------------------|

Line 76: hr_utility.set_location('Entering:'||l_proc, 1);

72: l_proc varchar2(72) := g_package||'api_updating';
73: l_fct_ret boolean;
74: --
75: Begin
76: hr_utility.set_location('Entering:'||l_proc, 1);
77: --
78: If (p_earnings_calculations_id is null and p_object_version_number is null)
79: then
80: --

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

87: p_earnings_calculations_id = g_old_rec.earnings_calculations_id and
88: p_object_version_number = g_old_rec.object_version_number
89: )
90: then
91: hr_utility.set_location(l_proc, 10);
92: --
93: -- The g_old_rec is current therefore we must
94: -- set the returning function to true
95: --

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

120: Then
121: fnd_message.set_name('SSP', 'SSP_35044_OBJECT_INVALID');
122: fnd_message.raise_error;
123: End If;
124: hr_utility.set_location(l_proc, 15);
125: l_fct_ret := true;
126: End If;
127: End If;
128: hr_utility.set_location(' Leaving:'||l_proc, 100);

Line 128: hr_utility.set_location(' Leaving:'||l_proc, 100);

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

Line 159: hr_utility.set_location('Entering:'||l_proc, 1);

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

Line 192: hr_utility.set_location(' Leaving:'||l_proc, 100);

188: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
189: fnd_message.raise_error;
190: end If;
191: --
192: hr_utility.set_location(' Leaving:'||l_proc, 100);
193: --
194: -- We need to trap the ORA LOCK exception
195: --
196: Exception

Line 227: hr_utility.set_location('Entering:'||l_proc, 1);

223: l_proc varchar2(72) := g_package||'convert_args';
224: --
225: Begin
226: --
227: hr_utility.set_location('Entering:'||l_proc, 1);
228: --
229: -- Convert arguments into local l_rec structure.
230: --
231: l_rec.earnings_calculations_id := p_earnings_calculations_id;

Line 242: hr_utility.set_location('Leaving :'||l_proc, 100);

238: l_rec.payment_periods := p_payment_periods;
239: --
240: -- Return the plsql record structure.
241: --
242: hr_utility.set_location('Leaving :'||l_proc, 100);
243: Return(l_rec);
244: --
245: End convert_args;
246: --