DBA Data[Home] [Help]

APPS.QA_SSQR_JRAD_PKG dependencies on FND_COLUMNS

Line 296: -- Data is fetched from FND_COLUMNS table.

292: -- srhariha. Mon Aug 29 04:55:57 PDT 2005.
293:
294: --
295: -- Get maximum length for region item.
296: -- Data is fetched from FND_COLUMNS table.
297: -- Important : For hardcoded elements following should be same as
298: -- developer name.
299: -- - VO ATTRIBUTE NAME
300: -- - COLUMN NAME IN QA_RESULTS_INTERFACE

Line 309: from fnd_columns fc, fnd_tables ft

305: FUNCTION get_max_length(p_column_name IN VARCHAR2) RETURN NUMBER IS
306:
307: cursor c1 is
308: select fc.width
309: from fnd_columns fc, fnd_tables ft
310: where fc.table_id = ft.table_id
311: and ft.table_name = 'QA_RESULTS_INTERFACE'
312: and ft.application_id = 250
313: and fc.user_column_name = p_column_name