DBA Data[Home] [Help]

APPS.OKE_FUNDSOURCE_PVT dependencies on ALL_TAB_COLUMNS

Line 241: all_tab_columns col

237:
238: cursor c_length(b_owner varchar2) is
239: select col.data_length
240: from user_synonyms syn,
241: all_tab_columns col
242: where syn.synonym_name = 'PA_AGREEMENTS_ALL'
243: and col.owner = b_owner
244: and col.table_name = syn.table_name
245: AND col.column_name = 'AGREEMENT_NUM';

Line 252: from all_tab_columns

248:
249: /* commnented out for bugfix 15926104
250: cursor c_length(b_owner varchar2) is
251: select data_length
252: from all_tab_columns
253: where table_name = 'PA_AGREEMENTS_ALL'
254: and owner = b_owner
255: and column_name = 'AGREEMENT_NUM';*/
256: