DBA Data[Home] [Help]

APPS.BEN_BNB_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 = 'BEN_BNFTS_BAL_PK') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: 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 115: hr_utility.set_location('Entering:'||l_proc, 5);

111: l_proc varchar2(72) := g_package||'api_updating';
112: l_fct_ret boolean;
113: --
114: Begin
115: hr_utility.set_location('Entering:'||l_proc, 5);
116: --
117: If (p_effective_date is null or
118: p_bnfts_bal_id is null or
119: p_object_version_number is null) Then

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

124: l_fct_ret := false;
125: Else
126: If (p_bnfts_bal_id = g_old_rec.bnfts_bal_id and
127: p_object_version_number = g_old_rec.object_version_number) 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 179: hr_utility.set_location('Entering:'||l_proc, 5);

175: --
176: --
177: --
178: Begin
179: hr_utility.set_location('Entering:'||l_proc, 5);
180: --
181: --
182: -- Call the corresponding datetrack api
183: --

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

190: p_delete => p_delete,
191: p_future_change => p_future_change,
192: p_delete_next_change => p_delete_next_change);
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 10);
195: End find_dt_del_modes;
196: --
197: -- ----------------------------------------------------------------------------
198: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

207: --
208: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
209: --
210: Begin
211: hr_utility.set_location('Entering:'||l_proc, 5);
212: --
213: -- Call the corresponding datetrack api
214: --
215: dt_api.find_dt_upd_modes

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

221: p_update => p_update,
222: p_update_override => p_update_override,
223: p_update_change_insert => p_update_change_insert);
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 10);
226: End find_dt_upd_modes;
227: --
228: -- ----------------------------------------------------------------------------
229: -- |------------------------< upd_effective_end_date >------------------------|

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

239: l_proc varchar2(72) := g_package||'upd_effective_end_date';
240: l_object_version_number number;
241: --
242: Begin
243: hr_utility.set_location('Entering:'||l_proc, 5);
244: --
245: -- Because we are updating a row we must get the next object
246: -- version number.
247: --

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

250: (p_base_table_name => 'ben_bnfts_bal_f',
251: p_base_key_column => 'bnfts_bal_id',
252: p_base_key_value => p_base_key_value);
253: --
254: hr_utility.set_location(l_proc, 10);
255: g_api_dml := true; -- Set the api dml status
256: --
257: -- Update the specified datetrack row setting the effective
258: -- end date to the specified new effective end date.

Line 269: hr_utility.set_location(' Leaving:'||l_proc, 15);

265: between t.effective_start_date and t.effective_end_date;
266: --
267: g_api_dml := false; -- Unset the api dml status
268: p_object_version_number := l_object_version_number;
269: hr_utility.set_location(' Leaving:'||l_proc, 15);
270: --
271: Exception
272: When Others Then
273: g_api_dml := false; -- Unset the api dml status

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

345: --
346: --
347: --
348: Begin
349: hr_utility.set_location('Entering:'||l_proc, 5);
350: --
351: -- Ensure that all the mandatory arguments are not null
352: --
353: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

386: If (p_object_version_number <> g_old_rec.object_version_number) Then
387: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
388: fnd_message.raise_error;
389: End If;
390: hr_utility.set_location(l_proc, 15);
391: --
392: --
393: -- Validate the datetrack mode mode getting the validation start
394: -- and end dates for the specified datetrack operation.

Line 424: hr_utility.set_location(' Leaving:'||l_proc, 30);

420: --
421: p_validation_start_date := l_validation_start_date;
422: p_validation_end_date := l_validation_end_date;
423: --
424: hr_utility.set_location(' Leaving:'||l_proc, 30);
425: --
426: -- We need to trap the ORA LOCK exception
427: --
428: Exception

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

496: l_proc varchar2(72) := g_package||'convert_args';
497: --
498: Begin
499: --
500: hr_utility.set_location('Entering:'||l_proc, 5);
501: --
502: -- Convert arguments into local l_rec structure.
503: --
504: l_rec.bnfts_bal_id := p_bnfts_bal_id;

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

544: l_rec.object_version_number := p_object_version_number;
545: --
546: -- Return the plsql record structure.
547: --
548: hr_utility.set_location(' Leaving:'||l_proc, 10);
549: Return(l_rec);
550: --
551: End convert_args;
552: --