DBA Data[Home] [Help]

APPS.ECX_INBOUND dependencies on ECX_ACTIONS

Line 107: ecx_actions.execute_stage_data (10,i_target, 'T');

103: -- already done in the initilization phase
104: if (i_target <> 0)
105: then
106: /** Execute the Pre-processing for the Target **/
107: ecx_actions.execute_stage_data (10,i_target, 'T');
108: end if;
109:
110: /** Move the Data from Source to the Target **/
111: for j in ecx_utils.g_target_levels(i_target).file_start_pos..ecx_utils.g_target_levels(i_target).file_end_pos

Line 159: ecx_actions.execute_stage_data (20,i_target, 'T');

155:
156: /** Execute the In-processing for the Target **/
157: if (i_target <> 0)
158: then
159: ecx_actions.execute_stage_data (20,i_target, 'T');
160: end if;
161:
162: -- check if the data needs to be printed
163: if (ecx_utils.dom_printing)

Line 182: ecx_actions.execute_stage_data (30,i_target, 'T');

178:
179: /** Execute the Post-processing for the Target **/
180: if (i_target <> 0)
181: then
182: ecx_actions.execute_stage_data (30,i_target, 'T');
183: end if;
184: if (l_procedureEnabled) then
185: ecx_debug.pop(i_method_name);
186: end if;

Line 264: ecx_actions.execute_stage_data (i_stage, i, 'S');

260: -- For level 0 this is already done in Initialization
261: if (i <> 0)
262: then
263: /** Execute the pre-processing for the Source **/
264: ecx_actions.execute_stage_data (i_stage, i, 'S');
265: end if;
266: end if;
267:
268: if i_stage = 20

Line 274: ecx_actions.execute_stage_data (i_stage, i, 'S');

270: -- For level 0 this is already done in Initialization
271: if (i <> 0)
272: then
273: /** Execute the In-processing for the Source **/
274: ecx_actions.execute_stage_data (i_stage, i, 'S');
275: end if;
276:
277: for j in ecx_utils.g_source_levels(i).first_target_level .. ecx_utils.g_source_levels(i).last_target_level
278: loop

Line 343: ecx_actions.execute_stage_data (30, i, 'S');

339: -- For level 0 this is will be done in the end
340: if (i <> 0)
341: then
342: /** Execute the Post-processing for the Source **/
343: ecx_actions.execute_stage_data (30, i, 'S');
344: end if;
345: end if;
346:
347: if (l_procedureEnabled) then

Line 1338: ecx_actions.execute_stage_data(20,0,'S');

1334:
1335: -- Execute the Stage 10 for Level 0
1336:
1337: -- In-processing for Document level Source Side
1338: ecx_actions.execute_stage_data(20,0,'S');
1339:
1340: -- In-processing for Document level
1341: ecx_actions.execute_stage_data(20,0,'T');
1342:

Line 1341: ecx_actions.execute_stage_data(20,0,'T');

1337: -- In-processing for Document level Source Side
1338: ecx_actions.execute_stage_data(20,0,'S');
1339:
1340: -- In-processing for Document level
1341: ecx_actions.execute_stage_data(20,0,'T');
1342:
1343: get_root_info (p_doc, p_map_id, node_info_stack(l_stack_indx).parent_node_id,
1344: l_root_node);
1345: l_root_element := xmldom.makeElement(l_root_node);

Line 1609: ecx_actions.execute_stage_data(30,0,'T');

1605: -- At this point g_xmldoc should have the correct dcument
1606:
1607: -- Execute the Stage 30 for Level 0
1608: -- Post-Processing for Target
1609: ecx_actions.execute_stage_data(30,0,'T');
1610: -- Post-Processing for Source
1611: ecx_actions.execute_stage_data(30,0,'S');
1612:
1613: ecx_utils.g_total_records := ecx_utils.g_total_records + 1;

Line 1611: ecx_actions.execute_stage_data(30,0,'S');

1607: -- Execute the Stage 30 for Level 0
1608: -- Post-Processing for Target
1609: ecx_actions.execute_stage_data(30,0,'T');
1610: -- Post-Processing for Source
1611: ecx_actions.execute_stage_data(30,0,'S');
1612:
1613: ecx_utils.g_total_records := ecx_utils.g_total_records + 1;
1614: if(l_statementEnabled) then
1615: ecx_debug.log(l_statement,'Total record processed', ecx_utils.g_total_records,i_method_name);