DBA Data[Home] [Help]

APPS.EDW_INSTANCE dependencies on EDW_LOCAL_INSTANCE

Line 17: that it gets from edw_local_instance

13: Input :
14: NONE
15: O/P
16: l_instance_code : Holds the value of the local instance
17: that it gets from edw_local_instance
18: Data Type: VARCHAR2(30)
19: */
20: ---------------------------------------------------------------------------------
21:

Line 29: FROM EDW_LOCAL_INSTANCE;

25: -- get the instance code from the local instance
26:
27: SELECT instance_code into
28: l_local_instance
29: FROM EDW_LOCAL_INSTANCE;
30:
31: RETURN l_local_instance;
32: EXCEPTION when NO_DATA_FOUND then
33: null;