DBA Data[Home] [Help]

PACKAGE: APPS.GL_BC_PREPROCESSOR_PKG

Source


1 PACKAGE gl_bc_preprocessor_pkg AS
2 /* $Header: glubcpps.pls 120.2 2005/05/05 01:35:29 kvora ship $ */
3 --
4 -- Package
5 --   gl_bc_preprocessor_pkg
6 -- Purpose
7 --   Handles hooks into the funds check preprocessor from other products
8 -- History
9 --   19-JUN-95  	D. J. Ogg	Created
10 
11   --
12   -- Procedure
13   --   post_module_hook
14   -- Purpose
15   --   Hook into the funds check preprocessor for other products.
16   --   This procedure is called at the last step of the preprocessor.
17   --   It is called whether or not the funds check is successful.
18   --   If you need to use this hook, please add a call to your own
19   --   package before the return statement.  Please make sure to commit
20   --   your changes in your package.
21   -- Returns
22   --   TRUE - upon success (causes the preprocessor to complete successfully)
23   --   FALSE - upon failure (causes the preprocessor to display an error)
24   -- History
25   --   19-JUN-95  D. J. Ogg    Created
26   -- Arguments
27   --   sob_id           The set of books id
28   --   pkt_id		The packet id
29   --   je_source	The source name
30   --   group_id		The group_id
31   -- Example
32   --   gl_bc_preprocessor_pkg.post_module_hook(2, 4, 'Other', 100, errbuf);
33   -- Notes
34   --
35   FUNCTION post_module_hook(sob_id    IN NUMBER,
36 			    pkt_id    IN NUMBER,
37 			    je_source IN VARCHAR2,
38 			    group_id  IN NUMBER) RETURN BOOLEAN;
39 
40 END gl_bc_preprocessor_pkg;