DBA Data[Home] [Help]

APPS.XDP_PROCEDURE_BUILDER dependencies on FND_LOOKUPS

Line 71: from fnd_lookups

67: g_AdapterTypeDisp varchar2(240);
68:
69: cursor c_getProcLookupMeaning(code varchar2) is
70: select meaning
71: from fnd_lookups
72: where lookup_type = 'XDP_PROCEDURE_TYPE'
73: and lookup_code = code;
74:
75: cursor c_getParamLookupMeaning(code varchar2) is

Line 77: from fnd_lookups

73: and lookup_code = code;
74:
75: cursor c_getParamLookupMeaning(code varchar2) is
76: select meaning
77: from fnd_lookups
78: where lookup_type = 'XDP_OBJECTS'
79: and lookup_code = code;
80:
81: cursor c_getAdapterApplMode is