DBA Data[Home] [Help]

APPS.HZ_IMP_LOAD_WRAPPER dependencies on FND_CONCURRENT_REQUESTS

Line 3328: from hz_imp_batch_details bs, FND_CONCURRENT_REQUESTS r

3324: l_wu_exists VARCHAR2(1);
3325:
3326: CURSOR c_batch_status(p_batch_id number) IS
3327: select bs.import_status, r.phase_code
3328: from hz_imp_batch_details bs, FND_CONCURRENT_REQUESTS r
3329: where bs.batch_id = p_batch_id
3330: and bs.import_req_id = r.request_id(+)
3331: and bs.run_number = (select max(run_number)-1
3332: from hz_imp_batch_details

Line 3698: from hz_imp_batch_summary bs, FND_CONCURRENT_REQUESTS r

3694:
3695: /* Get batch summary status */
3696: select bs.import_status, bs.what_if_flag, r.phase_code, bs.validate_flexfield_flag
3697: into l_batch_status, l_what_if_flag, l_phase_code , l_flex_validation_prof
3698: from hz_imp_batch_summary bs, FND_CONCURRENT_REQUESTS r
3699: where bs.batch_id = P_BATCH_ID
3700: and bs.import_req_id = r.request_id(+);
3701:
3702: req_data := fnd_conc_global.request_data;