DBA Data[Home] [Help]

APPS.GMS_INSTALL dependencies on GMS_IMPLEMENTATIONS

Line 37: from gms_implementations

33:
34: select 1 into l_dummy
35: from dual where exists
36: (select 1
37: from gms_implementations
38: where enabled = 'Y');
39:
40: Else
41:

Line 45: from gms_implementations

41:
42: select 1 into l_dummy
43: from dual where exists
44: (select 1
45: from gms_implementations
46: where org_id = x_org_id
47: and enabled = 'Y');
48:
49: End If;

Line 68: from gms_implementations;

64: BEGIN
65: -- Build a pl/sql table for the GMS implemented org ..
66: select org_id
67: BULK COLLECT into t_org_id
68: from gms_implementations;
69:
70: END SET_ORG_ARRAY;
71:
72: -- -----------------------------------------------------------------------+

Line 151: from gms_implementations_all );

147: --select 'X'
148: --into x_temp
149: select 'X' into x_temp from dual where exists (
150: select 1
151: from gms_implementations_all );
152: --where rownum < 2 ;
153:
154: return TRUE;
155: