DBA Data[Home] [Help]

APPS.PAY_TDF_INS dependencies on PAY_TDF_INS

Line 1: Package Body pay_tdf_ins as

1: Package Body pay_tdf_ins as
2: /* $Header: pytdfrhi.pkb 120.4.12020000.2 2012/07/05 02:54:09 amnaraya ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' pay_tdf_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_tdf_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: pay_tdf_ins.g_time_definition_id_i := p_time_definition_id;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: pay_tdf_ins.g_time_definition_id_i := p_time_definition_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 245: pay_tdf_ins.g_time_definition_id_i;

241: Cursor C_Sel2 is
242: Select null
243: from pay_time_definitions
244: where time_definition_id =
245: pay_tdf_ins.g_time_definition_id_i;
246: --
247: l_proc varchar2(72) := g_package||'pre_insert';
248: l_exists varchar2(1);
249: --

Line 253: If (pay_tdf_ins.g_time_definition_id_i is not null) Then

249: --
250: Begin
251: hr_utility.set_location('Entering:'||l_proc, 5);
252: --
253: If (pay_tdf_ins.g_time_definition_id_i is not null) Then
254: --
255: -- Verify registered primary key values not already in use
256: --
257: Open C_Sel2;

Line 273: pay_tdf_ins.g_time_definition_id_i;

269: --
270: -- Use registered key values and clear globals
271: --
272: p_rec.time_definition_id :=
273: pay_tdf_ins.g_time_definition_id_i;
274: pay_tdf_ins.g_time_definition_id_i := null;
275: Else
276: --
277: -- No registerd key values, so select the next sequence number

Line 274: pay_tdf_ins.g_time_definition_id_i := null;

270: -- Use registered key values and clear globals
271: --
272: p_rec.time_definition_id :=
273: pay_tdf_ins.g_time_definition_id_i;
274: pay_tdf_ins.g_time_definition_id_i := null;
275: Else
276: --
277: -- No registerd key values, so select the next sequence number
278: --

Line 413: pay_tdf_ins.pre_insert(p_rec);

409: hr_multi_message.end_validation_set;
410: --
411: -- Call the supporting pre-insert operation
412: --
413: pay_tdf_ins.pre_insert(p_rec);
414: --
415: -- Insert the row
416: --
417: pay_tdf_ins.insert_dml(p_rec);

Line 417: pay_tdf_ins.insert_dml(p_rec);

413: pay_tdf_ins.pre_insert(p_rec);
414: --
415: -- Insert the row
416: --
417: pay_tdf_ins.insert_dml(p_rec);
418: --
419: -- Call the supporting post-insert operation
420: --
421: pay_tdf_ins.post_insert

Line 421: pay_tdf_ins.post_insert

417: pay_tdf_ins.insert_dml(p_rec);
418: --
419: -- Call the supporting post-insert operation
420: --
421: pay_tdf_ins.post_insert
422: (p_effective_date
423: ,p_rec
424: );
425: --

Line 487: pay_tdf_ins.ins

483: --
484: -- Having converted the arguments into the pay_tdf_rec
485: -- plsql record structure we call the corresponding record business process.
486: --
487: pay_tdf_ins.ins
488: (p_effective_date
489: ,l_rec
490: );
491: --

Line 501: end pay_tdf_ins;

497: --
498: hr_utility.set_location(' Leaving:'||l_proc, 10);
499: End ins;
500: --
501: end pay_tdf_ins;