DBA Data[Home] [Help]

APPS.PAY_PGA_INS dependencies on PAY_PGA_INS

Line 1: Package Body pay_pga_ins as

1: Package Body pay_pga_ins as
2: /* $Header: pypgarhi.pkb 120.0 2005/09/29 10:53 tvankayl noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pga_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_pga_ins.g_pay_gl_account_id_i := p_pay_gl_account_id;

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

Line 230: pay_pga_ins.dt_insert_dml

226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: --
230: pay_pga_ins.dt_insert_dml
231: (p_rec => p_rec
232: ,p_effective_date => p_effective_date
233: ,p_datetrack_mode => p_datetrack_mode
234: ,p_validation_start_date => p_validation_start_date

Line 294: pay_pga_ins.g_pay_gl_account_id_i;

290: Cursor C_Sel2 is
291: Select null
292: from pay_payment_gl_accounts_f
293: where pay_gl_account_id =
294: pay_pga_ins.g_pay_gl_account_id_i;
295: --
296: l_proc varchar2(72) := g_package||'pre_insert';
297: l_exists varchar2(1);
298: --

Line 302: If (pay_pga_ins.g_pay_gl_account_id_i is not null) Then

298: --
299: Begin
300: hr_utility.set_location('Entering:'||l_proc, 5);
301: --
302: If (pay_pga_ins.g_pay_gl_account_id_i is not null) Then
303: --
304: -- Verify registered primary key values not already in use
305: --
306: Open C_Sel2;

Line 322: pay_pga_ins.g_pay_gl_account_id_i;

318: --
319: -- Use registered key values and clear globals
320: --
321: p_rec.pay_gl_account_id :=
322: pay_pga_ins.g_pay_gl_account_id_i;
323: pay_pga_ins.g_pay_gl_account_id_i := null;
324: Else
325: --
326: -- No registerd key values, so select the next sequence number

Line 323: pay_pga_ins.g_pay_gl_account_id_i := null;

319: -- Use registered key values and clear globals
320: --
321: p_rec.pay_gl_account_id :=
322: pay_pga_ins.g_pay_gl_account_id_i;
323: pay_pga_ins.g_pay_gl_account_id_i := null;
324: Else
325: --
326: -- No registerd key values, so select the next sequence number
327: --

Line 505: pay_pga_ins.ins_lck

501: hr_utility.set_location('Entering:'||l_proc, 5);
502: --
503: -- Call the lock operation
504: --
505: pay_pga_ins.ins_lck
506: (p_effective_date => p_effective_date
507: ,p_datetrack_mode => l_datetrack_mode
508: ,p_rec => p_rec
509: ,p_validation_start_date => l_validation_start_date

Line 528: pay_pga_ins.pre_insert

524: hr_multi_message.end_validation_set;
525: --
526: -- Call the supporting pre-insert operation
527: --
528: pay_pga_ins.pre_insert
529: (p_rec => p_rec
530: ,p_effective_date => p_effective_date
531: ,p_datetrack_mode => l_datetrack_mode
532: ,p_validation_start_date => l_validation_start_date

Line 538: pay_pga_ins.insert_dml

534: );
535: --
536: -- Insert the row
537: --
538: pay_pga_ins.insert_dml
539: (p_rec => p_rec
540: ,p_effective_date => p_effective_date
541: ,p_datetrack_mode => l_datetrack_mode
542: ,p_validation_start_date => l_validation_start_date

Line 548: pay_pga_ins.post_insert

544: );
545: --
546: -- Call the supporting post-insert operation
547: --
548: pay_pga_ins.post_insert
549: (p_rec => p_rec
550: ,p_effective_date => p_effective_date
551: ,p_datetrack_mode => l_datetrack_mode
552: ,p_validation_start_date => l_validation_start_date

Line 608: pay_pga_ins.ins

604: -- Having converted the arguments into the pay_pga_rec
605: -- plsql record structure we call the corresponding record
606: -- business process.
607: --
608: pay_pga_ins.ins
609: (p_effective_date
610: ,l_rec
611: );
612: --

Line 624: end pay_pga_ins;

620: --
621: hr_utility.set_location(' Leaving:'||l_proc, 10);
622: End ins;
623: --
624: end pay_pga_ins;