DBA Data[Home] [Help]

APPS.IEC_VALIDATE_PVT dependencies on ALL_TAB_COLUMNS

Line 897: FROM ALL_TAB_COLUMNS

893: SELECT COLUMN_NAME
894:
895: BULK COLLECT INTO l_columns
896:
897: FROM ALL_TAB_COLUMNS
898:
899: WHERE TABLE_NAME = p_source_type_view
900:
901: AND OWNER = l_table_owner;

Line 9992: Since we must use ALL_TAB_COLUMNS to check for columns

9988: /* No longer checking for required columns preemptively
9989:
9990: due to 8i/9i compatibility problems using ALL_TAB_COLS
9991:
9992: Since we must use ALL_TAB_COLUMNS to check for columns
9993:
9994: and we don't want to impact the performance of validation,
9995:
9996: we will only find the missing columns if the error occurs

Line 10040: FROM ALL_TAB_COLUMNS

10036: SELECT COLUMN_NAME
10037:
10038: BULK COLLECT INTO l_columns
10039:
10040: FROM ALL_TAB_COLUMNS
10041:
10042: WHERE TABLE_NAME = p_source_type_view
10043:
10044: AND OWNER = l_table_owner;