DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_LCE_HEADERS

Line 11849: * cz_lce_headers (LCE) and cz_fce_files (FCE).

11845:
11846: /*
11847: * This function returns the date when the logic generation occured
11848: * It uses the model id to determine engine type for switching between
11849: * cz_lce_headers (LCE) and cz_fce_files (FCE).
11850: *
11851: * @param p_model_id model id
11852: */
11853: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)

Line 11870: FROM cz_lce_headers

11866:
11867: if (l_config_engine_type = LCE_ENGINE_TYPE OR l_config_engine_type IS NULL) THEN
11868: SELECT creation_date
11869: INTO l_last_log_gen_date
11870: FROM cz_lce_headers
11871: WHERE deleted_flag = 0 AND
11872: net_type = 1 AND
11873: component_id = devl_project_id AND devl_project_id = p_model_id;
11874: ELSE