DBA Data[Home] [Help]

APPS.CZ_CONFIG_API_PVT dependencies on ALL_TAB_COLUMNS

Line 887: SELECT column_name FROM all_tab_columns

883: -- In the Column String we do not want to add key columns (config_hdr/rev) as
884: -- their insert value will be different.
885:
886: CURSOR c_GetColumns(CustomerTable VARCHAR2) IS
887: SELECT column_name FROM all_tab_columns
888: WHERE table_name=UPPER(LTRIM(RTRIM(CustomerTable)))
889: AND owner=v_AppsSchema
890: AND column_name NOT IN ('CONFIG_HDR_ID','CONFIG_REV_NBR');
891: