DBA Data[Home] [Help]

APPS.HRI_OPL_SUP_WRKFC dependencies on FND_PROFILE

Line 114: g_redo_reduction := NVL(fnd_profile.value('HRI_ENBL_REDO_REDUCTION'),'N');

110: g_refresh_end_date := hr_general.end_of_time;
111: g_full_refresh := 'Y';
112: g_concurrent_flag := 'Y';
113: g_debug_flag := 'Y';
114: g_redo_reduction := NVL(fnd_profile.value('HRI_ENBL_REDO_REDUCTION'),'N');
115: g_worker_id := 1;
116:
117: -- If parameters haven't already been set, then set them
118: ELSIF (g_refresh_start_date IS NULL) THEN

Line 147: g_redo_reduction := NVL(fnd_profile.value('HRI_ENBL_REDO_REDUCTION'),'N');

143: g_refresh_end_date := hr_general.end_of_time;
144: g_full_refresh := g_mthd_action_array.full_refresh_flag;
145: g_concurrent_flag := 'Y';
146: g_debug_flag := g_mthd_action_array.debug_flag;
147: g_redo_reduction := NVL(fnd_profile.value('HRI_ENBL_REDO_REDUCTION'),'N');
148: g_worker_id := hri_opl_multi_thread.get_worker_id;
149: --
150: hri_bpl_conc_log.dbg('Full refresh: ' || g_full_refresh);
151: hri_bpl_conc_log.dbg('Collect from: ' || to_char(g_refresh_start_date));