DBA Data[Home] [Help]

PACKAGE: APPS.FND_FLEX_HIERARCHY_COMPILER

Source


1 PACKAGE fnd_flex_hierarchy_compiler AS
2 /* $Header: AFFFCHYS.pls 120.2.12010000.1 2008/07/25 14:13:38 appldev ship $ */
3 
4 
5 -- ==================================================
6 -- PROCEDURE : compile_hierarchy
7 -- ==================================================
8 -- Compiles the flex value hierarchy.
9 --
10 -- p_flex_value_set : Value set ID or value set NAME.
11 --                    If the passed value is a number then compiler
12 --                    will consider it as FLEX_VALUE_SET_ID
13 --                    otherwise it will be considered as FLEX_VALUE_SET_NAME.
14 -- p_debug_flag     : Debug flag. 'Y' or 'N'
15 -- x_result         : 'SUCCESS' if the compiler was successfull.
16 --                    'FAILURE' if the compiler was not successfull.
17 -- x_message        : Message from the compiler.
18 --
19 --
20 PROCEDURE compile_hierarchy(p_flex_value_set IN VARCHAR2,
21 			    p_debug_flag     IN VARCHAR2 DEFAULT 'N',
22 			    x_result         OUT nocopy VARCHAR2,
23 			    x_message        OUT nocopy VARCHAR2);
24 
25 PROCEDURE compile_hierarchy(p_flex_value_set IN VARCHAR2,
26 			    x_result         OUT nocopy VARCHAR2,
27 			    x_message        OUT nocopy VARCHAR2);
28 
29 PROCEDURE request_lock(p_lock_name           IN VARCHAR2,
30                        x_lock_handle         OUT nocopy VARCHAR2);
31 
32 PROCEDURE release_lock(p_lock_name           IN VARCHAR2,
33                        p_lock_handle         IN VARCHAR2);
34 
35 END fnd_flex_hierarchy_compiler;