DBA Data[Home] [Help]

PACKAGE: APPS.GL_FLATTEN_LEDGER_SETS

Source


1 PACKAGE GL_FLATTEN_LEDGER_SETS AUTHID CURRENT_USER AS
2 /* $Header: glufllss.pls 120.4 2005/05/05 01:38:21 kvora ship $ */
3 
4 -- ********************************************************************
5 -- Function
6 --   Fix_Explicit_Sets
7 -- Purpose
8 --   This routine will process all changes to explicit ledger sets
9 --   made through the form.
10 -- History
11 --   07-18-2001       	S Kung		Created
12 -- Arguments
13 --   None
14 -- Example
15 --   ret_val := GL_FLATTEN_LEDGER_SETS.Fix_Explicit_Sets;
16 --
17 
18   FUNCTION  Fix_Explicit_Sets RETURN BOOLEAN;
19 
20 -- ******************************************************************
21 -- Function
22 --   Fix_Implicit_Sets
23 -- Purpose
24 --   This routine will call other routines to process all changes
25 --   to the implicit ledger sets due to changes in the ledger hierarchy
26 -- History
27 --   07-18-2001		S Kung		Created
28 -- Arguments
29 --   None
30 -- Example
31 --   ret_status := GL_FLATTEN_LEDGER_SETS.Fix_Implicit_Sets;
32 --
33 
34 --  Function  Fix_Implicit_Sets RETURN BOOLEAN;
35 
36 -- *****************************************************************
37 -- Function
38 --   Fix_Norm_Table
39 -- Purpose
40 --   This routine will populate changes in the ledger hierarchy to
41 --   the GL_LEDGER_SET_NORM_ASSIGN table.
42 -- History
43 --   07-18-2001		S Kung		Created
44 -- Arguments
45 --   None
46 -- Example
47 --   ret_status := GL_FLATTEN_LEDGER_SETS.Fix_Norm_Table;
48 --
49 
50 --  Function  Fix_Norm_Table RETURN BOOLEAN;
51 
52 -- ******************************************************************
53 -- Function
54 --   Fix_Flattened_Table
55 -- Purpose
56 --   This routine will populate changes to the ledger hierarchy to
57 --   the GL_LEDGER_SET_ASSIGNMENTS table.
58 -- History
59 --   07-18-2001		S Kung		Created
60 -- Arguments
61 --   None
62 -- Example
63 --   ret_status := GL_FLATTEN_LEDGER_SETS.Fix_Flattened_Table;
64 --
65 
66 --  Function  Fix_Flattened_Table RETURN BOOLEAN;
67 
68 -- ******************************************************************
69 -- Function
70 --   Clean_Up_Explicit_Sets
71 -- Purpose
72 --   This routine will set explicit ledger set data to the current
73 --   status.
74 -- History
75 --   07-18-2001		S Kung		Created
76 -- Arguments
77 --   None
78 -- Example
79 --   ret_status := GL_FLATTEN_LEDGER_SETS.Clean_Up_Explicit_Sets;
80 --
81 
82   Function  Clean_Up_Explicit_Sets RETURN BOOLEAN;
83 
84 -- ******************************************************************
85 -- Function
86 --   Clean_Up_Implicit_Sets
87 -- Purpose
88 --   This routine will set implicit ledger set data to the current
89 --   status.
90 -- History
91 --   07-18-2001		S Kung		Created
92 -- Arguments
93 --   None
94 -- Example
95 --   ret_status := GL_FLATTEN_LEDGER_SETS.Clean_Up_Implicit_Sets;
96 --
97 
98 --  Function  Clean_Up_Implicit_Sets RETURN BOOLEAN;
99 
100 -- ******************************************************************
101 
102 END GL_FLATTEN_LEDGER_SETS;
103