DBA Data[Home] [Help]

PACKAGE: APPS.PAY_GB_PAYE_SYNC

Source


1 PACKAGE pay_gb_paye_sync
2 --  /* $Header: pygbpayesync.pkh 120.2.12010000.2 2009/06/04 06:29:41 jvaradra noship $ */
3 AUTHID CURRENT_USER AS
4 
5 
6 /* write_util_file : Thie procedure will fetch all the aggregated assignments
7                      in the given tax reference which are not sharing the same tax
8                      details records */
9 
10 
11 PROCEDURE write_util_file(errbuf                OUT   NOCOPY VARCHAR2,
12                           retcode               OUT   NOCOPY NUMBER,
13                            p_tax_ref            IN VARCHAR2,
14                            p_business_group_id IN NUMBER,
15                            p_eff_date          IN VARCHAR2
16                           );
17 
18 g_number number := 1;
19 
20 /* read_util_file : Thie procedure will read the output file generated from the write_utl_file procedure
21                     and update the tax details against the required assignemnts */
22 
23 PROCEDURE read_util_file(errbuf OUT NOCOPY VARCHAR2,
24                          retcode OUT NOCOPY NUMBER,
25                          p_filename IN VARCHAR2,
26                          P_RUN_MODE in VARCHAR2
27                         );
28 
29 end pay_gb_paye_sync;