DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_FCE_FILES

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 11854: RETURN CZ_FCE_FILES.CREATION_DATE%TYPE

11850: *
11851: * @param p_model_id model id
11852: */
11853: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)
11854: RETURN CZ_FCE_FILES.CREATION_DATE%TYPE
11855:
11856: IS
11857: l_last_log_gen_date cz_fce_files.creation_date%TYPE;
11858: l_config_engine_type cz_devl_projects.config_engine_type%TYPE;

Line 11857: l_last_log_gen_date cz_fce_files.creation_date%TYPE;

11853: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)
11854: RETURN CZ_FCE_FILES.CREATION_DATE%TYPE
11855:
11856: IS
11857: l_last_log_gen_date cz_fce_files.creation_date%TYPE;
11858: l_config_engine_type cz_devl_projects.config_engine_type%TYPE;
11859: BEGIN
11860:
11861: SELECT config_engine_type

Line 11877: FROM cz_fce_files

11873: component_id = devl_project_id AND devl_project_id = p_model_id;
11874: ELSE
11875: SELECT MAX(creation_date)
11876: INTO l_last_log_gen_date
11877: FROM cz_fce_files
11878: WHERE deleted_flag = 0 AND
11879: component_id = p_model_id AND
11880: fce_file_type = 1;
11881: END IF;