DBA Data[Home] [Help]

APPS.OTA_REPROCESS_CLASSIC_UPGRADE dependencies on FND_LOOKUP_VALUES

Line 146: From Fnd_Lookup_values

142: -- ----------------------------------------------------------------------------
143: function do_migrate_lookup return boolean is
144: cursor c_exist is
145: select 1
146: From Fnd_Lookup_values
147: Where Lookup_type = 'FREQUENCY'
148: and created_by not in (1,2)
149: and (Lookup_code,language)
150: not in (Select Lookup_code,language from Fnd_lookup_values

Line 150: not in (Select Lookup_code,language from Fnd_lookup_values

146: From Fnd_Lookup_values
147: Where Lookup_type = 'FREQUENCY'
148: and created_by not in (1,2)
149: and (Lookup_code,language)
150: not in (Select Lookup_code,language from Fnd_lookup_values
151: Where Lookup_type = 'OTA_DURATION_UNITS')
152: and rownum = 1 ;
153:
154: l_exists boolean := false;