DBA Data[Home] [Help]

APPS.FTE_DIST_UTIL_PKG dependencies on FTE_MILE_DOWNLOAD_FILES

Line 69: from fte_mile_download_files

65:
66:
67: cursor c_get_file_ids(cp_template_id NUMBER) IS
68: select download_file_id
69: from fte_mile_download_files
70: where template_id = cp_template_id;
71:
72: l_file_ids FTE_DIST_UTIL_PKG.fte_id_tmp_num_table;
73:

Line 147: DELETE fte_mile_download_files

143: --
144: -- Delete the files
145: --
146: FORALL j in l_file_ids.FIRST..l_file_ids.LAST
147: DELETE fte_mile_download_files
148: WHERE download_file_id = l_file_ids(j);
149:
150: commit;
151: END IF;