DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_LCE_HEADERS

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

11919:
11920: /*
11921: * This function returns the date when the logic generation occured
11922: * It uses the model id to determine engine type for switching between
11923: * cz_lce_headers (LCE) and cz_fce_files (FCE).
11924: *
11925: * @param p_model_id model id
11926: */
11927: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)

Line 11944: FROM cz_lce_headers

11940:
11941: if (l_config_engine_type = LCE_ENGINE_TYPE OR l_config_engine_type IS NULL) THEN
11942: SELECT creation_date
11943: INTO l_last_log_gen_date
11944: FROM cz_lce_headers
11945: WHERE deleted_flag = 0 AND
11946: net_type = 1 AND
11947: component_id = devl_project_id AND devl_project_id = p_model_id;
11948: ELSE