DBA Data[Home] [Help]

APPS.CZ_FCE_COMPILE dependencies on CZ_FCE_FILES_S

Line 1004: SELECT cz_fce_files_s.NEXTVAL INTO this_file_id FROM DUAL;

1000: DBMS_LOB.WRITEAPPEND ( l_loc, 4, const_file_signature );
1001:
1002: IF ( this_segment_nbr = 1 ) THEN
1003:
1004: SELECT cz_fce_files_s.NEXTVAL INTO this_file_id FROM DUAL;
1005:
1006: --This does not delete a logic file if there is no such type in the current generation.
1007: --For example, if an only port has been removed from the model, there will be no port
1008: --file in this generation, so the current port file will not be deleted.

Line 1014: UPDATE cz_fce_files SET deleted_flag = '1'

1010: --#
1011: --Need a better handling of this problem. For now we will always create files of all
1012: --possible types even if they are empty. We do that for rule files anyway.
1013:
1014: UPDATE cz_fce_files SET deleted_flag = '1'
1015: WHERE component_id = p_component_id
1016: AND fce_file_type = p_type;
1017:
1018: ELSE