DBA Data[Home] [Help]

APPS.ECX_OUTBOUND dependencies on ECX_ACTIONS

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

149: -- already done in the initilization phase
150: if (i_target <> 0)
151: then
152: -- Pre-Processing Stage for Target
153: ecx_actions.execute_stage_data ( 10, i_target, 'T');
154: end if;
155:
156: /** Move the Values from Source to the Target **/
157: move_from_source_to_target(i_target);

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

156: /** Move the Values from Source to the Target **/
157: move_from_source_to_target(i_target);
158:
159: -- In Processing Stage for Target
160: ecx_actions.execute_stage_data ( 20, i_target, 'T');
161:
162: ecx_print_local.print_new_level
163: (
164: i_target,

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

167:
168: if (i_target <> 0)
169: then
170: -- Post Processing Stage for Target
171: ecx_actions.execute_stage_data ( 30, i_target, 'T');
172: end if;
173: if (l_procedureEnabled) then
174: ecx_debug.pop(i_method_name);
175: end if;

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

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

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

297: RAISE ecx_utils.PROGRAM_EXIT;
298: END IF;
299:
300: /** Execute the In-processing for the Source **/
301: ecx_actions.execute_stage_data (i_stage, i, 'S');
302:
303: for j in ecx_utils.g_source_levels(i).first_target_level .. ecx_utils.g_source_levels(i).last_target_level
304: loop
305: /** Initialize the Target **/

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

363: -- For level 0 this will be done in the end
364: if (i <> 0)
365: then
366: /** Execute the Post-processing for the Source **/
367: ecx_actions.execute_stage_data (30, i, 'S');
368: end if;
369:
370: /*
371: Before doing a stage 30 for level we need to print any remaning discontinuous elements

Line 689: ecx_actions.bind_variables_for_view(10,i);

685: END IF;
686: -- Set the Global Variable for Current Level
687: ecx_utils.g_current_level := i;
688: /* Bind the Variables for the Where Clause */
689: ecx_actions.bind_variables_for_view(10,i);
690: i_rows_processed := dbms_sql.execute (ecx_utils.g_source_levels(i).Cursor_Handle);
691: IF(l_statementEnabled) THEN
692: ecx_debug.log(l_statement,'Cursor Handle',ecx_utils.g_source_levels(i).Cursor_handle, i_method_name);
693: END IF;

Line 1028: i_variable_found := ecx_actions.find_stack_variable

1024:
1025: /**
1026: Find the Stack Variable.If Found set the value.
1027: **/
1028: i_variable_found := ecx_actions.find_stack_variable
1029: (
1030: 'TRANSACTION_TYPE',
1031: i_stack_pos
1032: );

Line 1039: i_variable_found := ecx_actions.find_stack_variable

1035: then
1036: ecx_utils.g_stack(i_stack_pos).variable_value := i_transaction_type;
1037: end if;
1038:
1039: i_variable_found := ecx_actions.find_stack_variable
1040: (
1041: 'TRANSACTION_SUBTYPE',
1042: i_stack_pos
1043: );

Line 1051: i_variable_found := ecx_actions.find_stack_variable

1047: ecx_utils.g_stack(i_stack_pos).variable_value := i_transaction_subtype;
1048: end if;
1049:
1050:
1051: i_variable_found := ecx_actions.find_stack_variable
1052: (
1053: 'DOCUMENT_ID',
1054: i_stack_pos
1055: );

Line 1062: i_variable_found := ecx_actions.find_stack_variable

1058: then
1059: ecx_utils.g_stack(i_stack_pos).variable_value := i_document_id;
1060: end if;
1061:
1062: i_variable_found := ecx_actions.find_stack_variable
1063: (
1064: 'TP_ID',
1065: i_stack_pos
1066: );

Line 1073: i_variable_found := ecx_actions.find_stack_variable

1069: then
1070: ecx_utils.g_stack(i_stack_pos).variable_value := i_tp_id;
1071: end if;
1072:
1073: i_variable_found := ecx_actions.find_stack_variable
1074: (
1075: 'TP_SITE_ID',
1076: i_stack_pos
1077: );

Line 1084: i_variable_found := ecx_actions.find_stack_variable

1080: then
1081: ecx_utils.g_stack(i_stack_pos).variable_value := i_tp_site_id;
1082: end if;
1083:
1084: i_variable_found := ecx_actions.find_stack_variable
1085: (
1086: 'TP_TYPE',
1087: i_stack_pos
1088: );

Line 1136: i_variable_found := ecx_actions.find_stack_variable

1132: end if;
1133:
1134: if ( i_stack_param_name is not null)
1135: then
1136: i_variable_found := ecx_actions.find_stack_variable
1137: (
1138: i_stack_param_name,
1139: i_stack_pos
1140: );

Line 1208: ecx_actions.execute_stage_data

1204: ecx_debug.log(l_statement, 'Parsed XML', l_parseXML,i_method_name);
1205: end if;
1206:
1207: -- Post-Processing for the Document on Target Side
1208: ecx_actions.execute_stage_data
1209: (
1210: 30,
1211: 0,
1212: 'T'

Line 1216: ecx_actions.execute_stage_data

1212: 'T'
1213: );
1214:
1215: -- Post Processing for the Document on Source Side
1216: ecx_actions.execute_stage_data
1217: (
1218: 30,
1219: 0,
1220: 'S'