DBA Data[Home] [Help]

PACKAGE: APPS.GL_FLATTEN_SEG_VAL_HIERARCHIES

Source


1 PACKAGE GL_FLATTEN_SEG_VAL_HIERARCHIES AS
2 /* $Header: gluflshs.pls 120.4.12010000.1 2008/07/28 13:30:48 appldev ship $ */
3 
4  -- ********************************************************************
5 -- Function
6 --   Flatten_Seg_Val_Hier
7 -- Purpose
8 --   This Function  is the entry point for maintaining the tables
9 --   GL_SEG_VAL_NORM_HIERARCHY  and GL_SEG_VAL_HIERARCHIES.
10 -- History
11 --   25-04-2001       Srini Pala    Created
12 -- Arguments
13 --   Is_seg_hier_changed            Indicates changes in the segment hierarchy
14 -- Example
15 --   ret_status := Flatten_Seg_Val_Hier(Is_Seg_Hier_Changed OUT NOCOPY BOOLEAN)
16 --
17 
18    Function  Flatten_Seg_Val_Hier(Is_Seg_Hier_Changed OUT NOCOPY BOOLEAN)
19                                   RETURN BOOLEAN ;
20 
21 
22 -- ******************************************************************
23 -- Function
24 --   Fix_Norm_Table
25 -- Purpose
26 --   This Function  maintains the table GL_SEG_VAL_NORM_HIERARCHY
27 -- History
28 --   25-04-2001   Srini Pala    Created
29 -- Arguments
30 --   Is_Norm_table_Changed      Indicates changes in Norm table -values BOOLEAN
31 -- Example
32 --   ret_status := Fix_Norm_Table();
33 --
34    Function  Fix_Norm_Table(Is_Norm_table_Changed OUT NOCOPY BOOLEAN)
35                             RETURN BOOLEAN;
36 
37 -- *****************************************************************
38 
39 -- Function
40 --   Fix_Flattened_Table
41 -- Purpose
42 --   This Function  maintains the table GL_SEG_VAL_HIERARCHIES
43 -- History
44 --   25-04-2001       Srini Pala    Created
45 -- Arguments
46 --  Is_Flattened_Tab_changed        Indicates changes in the flattened table
47 -- Example
48 --   ret_status := Fix_Flattened_Table();
49 --
50    Function  Fix_Flattened_Table(Is_Flattened_Tab_Changed OUT NOCOPY BOOLEAN)
51                                  RETURN BOOLEAN;
52 
53 
54 -- ******************************************************************
55 
56 -- FUNCTION
57 --   Clean_Up
58 -- Purpose
59 --   This function  is to bring all records to its final state in the tables
60 --   GL_SEG_VAL_NORM_HIERARCHY  and GL_SEG_VAL_HIERARCHIES
61 -- History
62 --   25-04-2001       Srini Pala    Created
63 -- Arguments
64 
65 -- Example
66 --   ret_status := Clean_Up();
67 --
68    FUNCTION  Clean_Up RETURN BOOLEAN ;
69 
70 
71 
72 -- ******************************************************************
73 
74   END GL_FLATTEN_SEG_VAL_HIERARCHIES;
75