DBA Data[Home] [Help]

PACKAGE BODY: APPS.GL_BC_PREPROCESSOR_PKG

Source


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