DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_FCE_FILES

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

11924: *
11925: * @param p_model_id model id
11926: */
11927: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)
11928: RETURN CZ_FCE_FILES.CREATION_DATE%TYPE
11929:
11930: IS
11931: l_last_log_gen_date cz_fce_files.creation_date%TYPE;
11932: l_config_engine_type cz_devl_projects.config_engine_type%TYPE;

Line 11931: l_last_log_gen_date cz_fce_files.creation_date%TYPE;

11927: FUNCTION GET_LAST_LOGIC_GEN_DATE(p_model_id in NUMBER)
11928: RETURN CZ_FCE_FILES.CREATION_DATE%TYPE
11929:
11930: IS
11931: l_last_log_gen_date cz_fce_files.creation_date%TYPE;
11932: l_config_engine_type cz_devl_projects.config_engine_type%TYPE;
11933: BEGIN
11934:
11935: SELECT config_engine_type

Line 11951: FROM cz_fce_files

11947: component_id = devl_project_id AND devl_project_id = p_model_id;
11948: ELSE
11949: SELECT MAX(creation_date)
11950: INTO l_last_log_gen_date
11951: FROM cz_fce_files
11952: WHERE deleted_flag = 0 AND
11953: component_id = p_model_id AND
11954: fce_file_type = 1;
11955: END IF;