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 694: ecx_actions.bind_variables_for_view(10,i);

690: -- Set the Global Variable for Current Level
691: ecx_utils.g_current_level := i;
692:
693: /* Bind the Variables for the Where Clause */
694: ecx_actions.bind_variables_for_view(10,i);
695: i_rows_processed := dbms_sql.execute (ecx_utils.g_source_levels(i).Cursor_Handle);
696: if(l_statementEnabled) then
697: ecx_debug.log(l_statement,'Cursor Handle',ecx_utils.g_source_levels(i).Cursor_handle,
698: i_method_name);

Line 1074: i_variable_found := ecx_actions.find_stack_variable

1070:
1071: /**
1072: Find the Stack Variable.If Found set the value.
1073: **/
1074: i_variable_found := ecx_actions.find_stack_variable
1075: (
1076: 'TRANSACTION_TYPE',
1077: i_stack_pos
1078: );

Line 1085: i_variable_found := ecx_actions.find_stack_variable

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

Line 1097: i_variable_found := ecx_actions.find_stack_variable

1093: ecx_utils.g_stack(i_stack_pos).variable_value := i_transaction_subtype;
1094: end if;
1095:
1096:
1097: i_variable_found := ecx_actions.find_stack_variable
1098: (
1099: 'DOCUMENT_ID',
1100: i_stack_pos
1101: );

Line 1108: i_variable_found := ecx_actions.find_stack_variable

1104: then
1105: ecx_utils.g_stack(i_stack_pos).variable_value := i_document_id;
1106: end if;
1107:
1108: i_variable_found := ecx_actions.find_stack_variable
1109: (
1110: 'TP_ID',
1111: i_stack_pos
1112: );

Line 1119: i_variable_found := ecx_actions.find_stack_variable

1115: then
1116: ecx_utils.g_stack(i_stack_pos).variable_value := i_tp_id;
1117: end if;
1118:
1119: i_variable_found := ecx_actions.find_stack_variable
1120: (
1121: 'TP_SITE_ID',
1122: i_stack_pos
1123: );

Line 1130: i_variable_found := ecx_actions.find_stack_variable

1126: then
1127: ecx_utils.g_stack(i_stack_pos).variable_value := i_tp_site_id;
1128: end if;
1129:
1130: i_variable_found := ecx_actions.find_stack_variable
1131: (
1132: 'TP_TYPE',
1133: i_stack_pos
1134: );

Line 1182: i_variable_found := ecx_actions.find_stack_variable

1178: end if;
1179:
1180: if ( i_stack_param_name is not null)
1181: then
1182: i_variable_found := ecx_actions.find_stack_variable
1183: (
1184: i_stack_param_name,
1185: i_stack_pos
1186: );

Line 1254: ecx_actions.execute_stage_data

1250: ecx_debug.log(l_statement, 'Parsed XML', l_parseXML,i_method_name);
1251: end if;
1252:
1253: -- Post-Processing for the Document on Target Side
1254: ecx_actions.execute_stage_data
1255: (
1256: 30,
1257: 0,
1258: 'T'

Line 1262: ecx_actions.execute_stage_data

1258: 'T'
1259: );
1260:
1261: -- Post Processing for the Document on Source Side
1262: ecx_actions.execute_stage_data
1263: (
1264: 30,
1265: 0,
1266: 'S'