DBA Data[Home] [Help]

APPS.FTE_BULK_DTT_PKG dependencies on FTE_MILE_DOWNLOAD_FILES

Line 543: from fte_mile_download_files fmdf

539: fmdf.template_id,
540: fmdf.download_date,
541: fmdf.upload_date,
542: fmdf.identifier_type
543: from fte_mile_download_files fmdf
544: where fmdf.file_name = cp_file_name;
545:
546:
547: cursor c_get_download_lines(cp_download_file_id NUMBER) IS

Line 2391: -- Update FTE_MILE_DOWNLOAD_FILES with the upload date

2387: WSH_DEBUG_SV.logmsg(l_module_name,'Updating the Download files table with upload information');
2388: END IF;
2389: --
2390: --
2391: -- Update FTE_MILE_DOWNLOAD_FILES with the upload date
2392: --
2393: update fte_mile_download_files
2394: set upload_date = l_cur_date,
2395: upload_id = p_load_id

Line 2393: update fte_mile_download_files

2389: --
2390: --
2391: -- Update FTE_MILE_DOWNLOAD_FILES with the upload date
2392: --
2393: update fte_mile_download_files
2394: set upload_date = l_cur_date,
2395: upload_id = p_load_id
2396: where download_file_id = l_download_file_id;
2397: