DBA Data[Home] [Help]

APPS.HRI_OPL_SUP_WRKFC_ASG dependencies on HRI_OPL_MULTI_THREAD

Line 1354: hri_opl_multi_thread.update_parameters

1350: (p_parameter_name => 'FULL_REFRESH',
1351: p_process_table_name => 'HRI_MAP_SUP_WRKFC_ASG');
1352:
1353: -- Log defaulted parameters so the slave processes pick up
1354: hri_opl_multi_thread.update_parameters
1355: (p_mthd_action_id => p_mthd_action_id,
1356: p_full_refresh => g_full_refresh,
1357: p_global_start_date => l_dbi_collection_start_date);
1358:

Line 1363: g_mthd_action_array := hri_opl_multi_thread.get_mthd_action_array(p_mthd_action_id);

1359: END IF;
1360: --
1361: -- Populate the multithreading action array to populate the global parameters
1362: --
1363: g_mthd_action_array := hri_opl_multi_thread.get_mthd_action_array(p_mthd_action_id);
1364: --
1365: g_refresh_start_date := g_mthd_action_array.collect_from_date;
1366: g_refresh_end_date := hr_general.end_of_time;
1367: g_full_refresh := g_mthd_action_array.full_refresh_flag;

Line 1371: g_worker_id := hri_opl_multi_thread.get_worker_id;

1367: g_full_refresh := g_mthd_action_array.full_refresh_flag;
1368: g_concurrent_flag := 'Y';
1369: g_debug_flag := g_mthd_action_array.debug_flag;
1370: g_redo_reduction := NVL(fnd_profile.value('HRI_ENBL_REDO_REDUCTION'),'N');
1371: g_worker_id := hri_opl_multi_thread.get_worker_id;
1372: --
1373: hri_bpl_conc_log.dbg('Full refresh: ' || g_full_refresh);
1374: hri_bpl_conc_log.dbg('Collect from: ' || to_char(g_refresh_start_date));
1375: --

Line 2144: FROM (SELECT hri_opl_multi_thread.get_next_mthd_range_id(rownum,200) mthd_range_id

2140: CURSOR c_range_cursor IS
2141: SELECT mthd_range_id,
2142: min(object_id) start_object_id,
2143: max(object_id) end_object_id
2144: FROM (SELECT hri_opl_multi_thread.get_next_mthd_range_id(rownum,200) mthd_range_id
2145: ,object_id
2146: FROM (SELECT DISTINCT assignment_id object_id
2147: FROM hri_mb_asgn_events_ct
2148: ORDER BY assignment_id)