DBA Data[Home] [Help]

PACKAGE: APPS.GL_GLCOAM_PKG

Source


1 PACKAGE GL_GLCOAM_PKG as
2 /* $Header: glmrcoas.pls 120.3 2005/07/27 17:38:23 ticheng ship $ */
3 
4   --
5   -- Procedure
6   --   run_prog
7   -- Purpose
8   --   This procedure executes the actual work to create the mirror strcutre
9   --   under 'GLLE'.
10   -- History
11   --   01/31/03     C Ma            Created.
12   -- Arguments
13   --   id_flex_num    NUMBER
14   --   mode      VARCHAR2
15   -- Example
16   --   gl_glcoam_pkg.run_prog(101,'Y');
17   -- Notes
18   --
19   PROCEDURE run_prog(X_id_flex_num NUMBER,
20                      X_mode   VARCHAR2);
21 
22   --
23   -- Function
24   --   gl_coam_rule
25   -- Purpose
26   --   This function is the pl/sql rule function used by the business event
27   --   subscription on oracle.apps.fnd.flex.kff.structure.compiled.
28   -- History
29   --   07/12/05     T Cheng         Created.
30   -- Arguments
31   --   p_subscription_guid   The globally unique identifier of the subscription
32   --   p_event               The event message
33   -- Notes
34   --
35   FUNCTION gl_coam_rule(p_subscription_guid IN RAW,
36                         p_event             IN OUT NOCOPY WF_EVENT_T)
37     RETURN VARCHAR2;
38 
39 END GL_GLCOAM_PKG;