DBA Data[Home] [Help]

APPS.PAY_EVENTS_WRAPPER dependencies on ALL_TAB_COLUMNS

Line 37: all_tab_columns

33: and pass these to the interpreter
34: rather than the effective assignment
35: dates
36: Ed Jones 02-Jul-2002 115.5 Removed owner from join to
37: all_tab_columns
38: Ed Jones 23-Jul-2002 115.6 Add debugging mode and allow
39: messages to be sent to conc.
40: manager output file
41: Ed Jones 23-Jul-2002 115.7 Added more debug information

Line 89: Andy Logue 13-FEB-2006 115.19 Schema clone for all_tab_columns.

85: N Bristow 10-MAR-2004 115.18 Performance changes, the PL/SQL
86: tables were being over
87: referenced. Change these tables
88: to use a hash cache.
89: Andy Logue 13-FEB-2006 115.19 Schema clone for all_tab_columns.
90: ===============================================================================
91: */
92: --
93: -- < PRIVATE TYPES > -----------------------------------------------------

Line 520: FROM all_tab_columns

516: ) IS
517: -- Find the column in the data-dictionary
518: CURSOR get_info(cp_name IN VARCHAR2,cp_column IN VARCHAR2,cp_owner IN VARCHAR2) IS
519: SELECT 'Y'
520: FROM all_tab_columns
521: WHERE table_name = cp_name
522: AND column_name = cp_column
523: AND owner = cp_owner;
524: --