DBA Data[Home] [Help]

PACKAGE: APPS.GL_SUMMARY_ACCOUNT_TYPES_PKG

Source


1 PACKAGE GL_SUMMARY_ACCOUNT_TYPES_PKG as
2 /* $Header: gluacsms.pls 120.2 2005/05/05 01:34:35 kvora ship $ */
3 
4 --
5 -- Package
6 --   GL_SUMMARY_ACCOUNT_TYPES_PKG
7 -- Purpose
8 --   To determine the account types of summary accounts and update the
9 --   summary accounts
10 -- History
11 --   26-AUG-97  D J Ogg          Created
12 --
13 
14   --
15   -- Exceptions
16   --
17   INVALID_COMBINATION   EXCEPTION;
18 
19 
20   --
21   -- Procedure
22   --   update_account_types
23   -- Purpose
24   --   Updates the account types of summary accounts
25   -- History
26   --   26-AUG-97  D. J. Ogg    Created
27   -- Arguments
28   --   coa_id				The chart of accounts id
29   --   min_ccid_processed		Minimum ccid to process
30   --					accounts were bad
31   -- Notes
32   --
33   PROCEDURE update_account_types(coa_id			NUMBER,
34 				 min_ccid_processed	NUMBER);
35 
36 END GL_SUMMARY_ACCOUNT_TYPES_PKG;