DBA Data[Home] [Help]

APPS.BEN_EFC_FUNCTIONS dependencies on HR_EFC_INFO

Line 89: hr_efc_info.get_action_details

85: -- Check if we know the business group that we are dealing with
86: --
87: if p_business_group_id is null then
88: --
89: hr_efc_info.get_action_details
90: (l_action_id
91: ,l_bg
92: ,p_chunk
93: );

Line 103: p_chunk := hr_efc_info.get_chunk;

99: );
100: fetch csr_fetch_details into l_action_id, l_bg;
101: close csr_fetch_details;
102: --
103: p_chunk := hr_efc_info.get_chunk;
104: --
105: end if;
106: --
107: -- Validate that conversion started with correct no. of total workers

Line 109: hr_efc_info.validate_total_workers

105: end if;
106: --
107: -- Validate that conversion started with correct no. of total workers
108: --
109: hr_efc_info.validate_total_workers
110: (p_action_id => l_action_id
111: ,p_component_name => p_component_name
112: ,p_sub_step => p_sub_step
113: ,p_step => 'C_RECAL'

Line 120: hr_efc_info.insert_or_select_comp_row

116: --
117: -- First processor only - insert a row into the HR_EFC_PROCESS_COMPONENTS
118: -- table (procedure includes locking so that only 1 row is inserted)
119: --
120: hr_efc_info.insert_or_select_comp_row
121: (p_action_id => l_action_id
122: ,p_process_component_name => p_component_name
123: ,p_table_name => p_table_name
124: ,p_total_workers => p_total_workers

Line 134: hr_efc_info.insert_or_select_worker_row

130: --
131: -- Call procedure to check if this worker has already started (will detect
132: -- if this worker has been restarted).
133: --
134: hr_efc_info.insert_or_select_worker_row
135: (p_efc_worker_id => p_efc_worker_id
136: ,p_status => p_status
137: ,p_process_component_id => l_component_id
138: ,p_process_component_name => p_component_name

Line 175: hr_efc_info.update_worker_row

171: --
172: IF (p_row_count >= p_chunk_size) THEN
173: --
174: -- Update worker table
175: hr_efc_info.update_worker_row
176: (p_efc_worker_id => p_efc_worker_id
177: ,p_pk1 => p_pk1
178: );
179: -- Reset the counter.