DBA Data[Home] [Help]

PACKAGE: APPS.FND_CONTEXT_UTIL

Source


1 package FND_CONTEXT_UTIL AUTHID CURRENT_USER as
2 /* $Header: AFCPCTUS.pls 115.0 2004/01/27 00:20:44 vvengala ship $ */
3 
4   --
5   -- PUBLIC VARIABLES
6   --
7 
8 
9   -- Exceptions
10 
11   -- Exception Pragmas
12 
13   --
14   -- PUBLIC FUNCTIONS
15   --
16 
17   --
18   -- Name
19   --   get_tag_value
20   -- Purpose
21   --   get_tag_value returns value for a variable from context_file
22   --
23   -- Parameters:
24   --   node_name  - name of the node for which you want to get the variable
25   --                value
26   --   tag_name   - name of the tag from context file for which you want to
27   --                get value.
28   --
29   --
30   function get_tag_value(node_name  in varchar2,
31 		         tag_name   in varchar2) return varchar2;
32 
33 
34  end FND_CONTEXT_UTIL;