DBA Data[Home] [Help]

PACKAGE: APPS.HR_GL_SYNC_ORGS

Source


1 PACKAGE hr_gl_sync_orgs AUTHID CURRENT_USER AS
2    -- $Header: hrglsync.pkh 120.1 2005/06/22 02:18:41 adudekul noship $
3 
4    --
5    -- Due to  potentially heavy memory usage by this package, restrict
6    -- package data life to current call only.
7    --
8    -- Fix for bug 4445934. Comment out the pragma serially_reusable.
9    --
10    -- PRAGMA SERIALLY_REUSABLE;
11 
12 
13    --
14    -- Public program unit accessed in the following ways:-
15    -- 1) Concurrent Program - Create/Maintain Company CostCenter Orgs
16    -- 2) Concurrent Program - Synchronize GL Company CostCenter Orgs
17    -- 3) Concurrent Program - Export/Reporting Mode
18    --
19    PROCEDURE sync_orgs( errbuf              IN OUT NOCOPY VARCHAR2
20                       , retcode             IN OUT NOCOPY NUMBER
21                       , p_mode              IN            VARCHAR2
22                       , p_business_group_id IN            NUMBER
23                       , p_coa_id            IN            NUMBER
24                       , p_co                IN            VARCHAR2
25                       , p_ccid              IN            NUMBER
26                       , p_source            IN            VARCHAR2
27                       , p_sync_org_name     IN            VARCHAR2 DEFAULT 'N'
28                       , p_sync_org_dates    IN            VARCHAR2 DEFAULT 'N'
29                       );
30 
31 
32    --
33    -- Public program unit accessed in the following ways:-
34    -- 1) Code Hook - GL Create Code Combination
35    --
36    PROCEDURE sync_single_org( p_ccid IN NUMBER
37                             );
38 
39 END hr_gl_sync_orgs;