DBA Data[Home] [Help]

APPS.CSI_DEBUG_PKG dependencies on AD_FILE_VERSIONS

Line 2905: FROM ad_file_versions afv,

2901: p_file_id IN number)
2902: IS
2903: CURSOR patch_hist_cur(p_file_id IN number) IS
2904: SELECT distinct afv.version, afv.creation_date, ab.bug_number
2905: FROM ad_file_versions afv,
2906: ad_patch_run_bug_actions aprba,
2907: ad_patch_run_bugs aprb,
2908: ad_bugs ab
2909: WHERE afv.file_id = p_file_id

Line 2955: FROM ad_file_versions

2951: l_out varchar2(2000);
2952:
2953: CURSOR latest_version_cur(p_file_id IN number) IS
2954: SELECT version
2955: FROM ad_file_versions
2956: WHERE file_id = p_file_id
2957: ORDER BY file_version_id desc;
2958:
2959: BEGIN