DBA Data[Home] [Help]

APPS.ECX_UTILS dependencies on ECX_TRAN_STAGE_DATA

Line 250: ecx_tran_stage_data etsd

246: epm.data_type data_type,
247: nvl(epm.variable_direction,'S') variable_direction,
248: epm.variable_value variable_constant
249: from ecx_proc_mappings epm,
250: ecx_tran_stage_data etsd
251: where etsd.transtage_id = epm.transtage_id
252: and etsd.map_id = p_map_id
253: and epm.map_id = p_map_id
254: order by epm.transtage_id,procmap_id;

Line 330: from ecx_tran_stage_data etsd

326: i_method_name varchar2(2000) := 'ecx_utils.load_procedure_definitions';
327: cursor proc_definition is
328: select transtage_id,
329: custom_procedure_name
330: from ecx_tran_stage_data etsd
331: where etsd.map_id = i_map_id
332: and action_type = 1050;
333:
334: l_transtage_id pls_integer;

Line 1874: table ( ecx_tran_stage_data ) and kept in the Local Pl/SQL table. Since the

1870:
1871:
1872: /**
1873: Get all the Dynamic Inbound Staging data. The data is retrieved from the
1874: table ( ecx_tran_stage_data ) and kept in the Local Pl/SQL table. Since the
1875: data is in PL/SQL memory , no further lookups in the table are required.
1876: This helps in improving the perfromance , as un-necessary selects are saved.
1877: **/
1878: get_tran_stage_data (i_map_id);

Line 2041: Retrieves the Data from the ecx_TRAN_STAGE_DATA for a given Stage and Level.

2037:
2038: end close_process;
2039:
2040: /**
2041: Retrieves the Data from the ecx_TRAN_STAGE_DATA for a given Stage and Level.
2042: This will retrieve all the actions both on the source and the target
2043: **/
2044: procedure get_tran_stage_data (
2045: i_map_id IN pls_integer)

Line 2051: transtage_id ecx_tran_stage_data.transtage_id%TYPE,

2047:
2048: i_method_name varchar2(2000) := 'ecx_utils.get_tran_stage_data';
2049:
2050: /* TYPE stage_data_record is RECORD (
2051: transtage_id ecx_tran_stage_data.transtage_id%TYPE,
2052: object_level ecx_object_levels.object_level%TYPE,
2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,

Line 2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,

2049:
2050: /* TYPE stage_data_record is RECORD (
2051: transtage_id ecx_tran_stage_data.transtage_id%TYPE,
2052: object_level ecx_object_levels.object_level%TYPE,
2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,

Line 2054: stage ecx_tran_stage_data.stage%TYPE,

2050: /* TYPE stage_data_record is RECORD (
2051: transtage_id ecx_tran_stage_data.transtage_id%TYPE,
2052: object_level ecx_object_levels.object_level%TYPE,
2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,

Line 2055: object_direction ecx_tran_stage_data.object_direction%TYPE,

2051: transtage_id ecx_tran_stage_data.transtage_id%TYPE,
2052: object_level ecx_object_levels.object_level%TYPE,
2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,

Line 2056: seq_number ecx_tran_stage_data.seq_number%TYPE,

2052: object_level ecx_object_levels.object_level%TYPE,
2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,

Line 2057: action_type ecx_tran_stage_data.action_type%TYPE,

2053: objectlevel_id ecx_tran_stage_data.objectlevel_id%TYPE,
2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,

Line 2058: variable_level ecx_tran_stage_data.variable_level%TYPE,

2054: stage ecx_tran_stage_data.stage%TYPE,
2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,

Line 2059: variable_name ecx_tran_stage_data.variable_name%TYPE,

2055: object_direction ecx_tran_stage_data.object_direction%TYPE,
2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,

Line 2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,

2056: seq_number ecx_tran_stage_data.seq_number%TYPE,
2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,

Line 2061: variable_value ecx_tran_stage_data.variable_value%TYPE,

2057: action_type ecx_tran_stage_data.action_type%TYPE,
2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,

Line 2062: default_value ecx_tran_stage_data.default_value%TYPE,

2058: variable_level ecx_tran_stage_data.variable_level%TYPE,
2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,

Line 2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,

2059: variable_name ecx_tran_stage_data.variable_name%TYPE,
2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,

Line 2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,

2060: variable_direction ecx_tran_stage_data.variable_direction%TYPE,
2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,

Line 2065: data_type ecx_tran_stage_data.data_type%TYPE,

2061: variable_value ecx_tran_stage_data.variable_value%TYPE,
2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,

Line 2066: function_name ecx_tran_stage_data.function_name%TYPE,

2062: default_value ecx_tran_stage_data.default_value%TYPE,
2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,

Line 2067: where_clause ecx_tran_stage_data.where_clause%TYPE,

2063: sequence_name ecx_tran_stage_data.sequence_name%TYPE,
2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,

Line 2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,

2064: custom_procedure_name ecx_tran_stage_data.custom_procedure_name%TYPE,
2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,

Line 2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,

2065: data_type ecx_tran_stage_data.data_type%TYPE,
2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,

Line 2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,

2066: function_name ecx_tran_stage_data.function_name%TYPE,
2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,

Line 2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,

2067: where_clause ecx_tran_stage_data.where_clause%TYPE,
2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,

Line 2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,

2068: variable_pos ecx_tran_stage_data.variable_pos%TYPE,
2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,

Line 2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,

2069: cond_logical_operator ecx_tran_stage_data.cond_logical_operator%TYPE,
2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,

Line 2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,

2070: cond_operator1 ecx_tran_stage_data.cond_operator1%TYPE,
2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,

Line 2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,

2071: cond_var1_level ecx_tran_stage_data.cond_var1_level%TYPE,
2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,

Line 2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,

2072: cond_var1_name ecx_tran_stage_data.cond_var1_name%TYPE,
2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,

Line 2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,

2073: cond_var1_pos ecx_tran_stage_data.cond_var1_pos%TYPE,
2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,

Line 2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,

2074: cond_var1_direction ecx_tran_stage_data.cond_var1_direction%TYPE,
2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,

Line 2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,

2075: cond_var1_constant ecx_tran_stage_data.cond_var1_constant%TYPE,
2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,

Line 2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,

2076: cond_val1_level ecx_tran_stage_data.cond_val1_level%TYPE,
2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,

Line 2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,

2077: cond_val1_name ecx_tran_stage_data.cond_val1_name%TYPE,
2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,

Line 2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,

2078: cond_val1_pos ecx_tran_stage_data.cond_val1_pos%TYPE,
2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,

Line 2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,

2079: cond_val1_direction ecx_tran_stage_data.cond_val1_direction%TYPE,
2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,

Line 2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,

2080: cond_val1_constant ecx_tran_stage_data.cond_val1_constant%TYPE,
2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,

Line 2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,

2081: cond_operator2 ecx_tran_stage_data.cond_operator2%TYPE,
2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,

Line 2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,

2082: cond_var2_level ecx_tran_stage_data.cond_var2_level%TYPE,
2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,

Line 2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,

2083: cond_var2_name ecx_tran_stage_data.cond_var2_name%TYPE,
2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,

Line 2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,

2084: cond_var2_pos ecx_tran_stage_data.cond_var2_pos%TYPE,
2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,

Line 2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,

2085: cond_var2_direction ecx_tran_stage_data.cond_var2_direction%TYPE,
2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,

Line 2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,

2086: cond_var2_constant ecx_tran_stage_data.cond_var2_constant%TYPE,
2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,

Line 2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,

2087: cond_val2_level ecx_tran_stage_data.cond_val2_level%TYPE,
2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,

Line 2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,

2088: cond_val2_name ecx_tran_stage_data.cond_val2_name%TYPE,
2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,

Line 2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,

2089: cond_val2_pos ecx_tran_stage_data.cond_val2_pos%TYPE,
2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,

Line 2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,

2090: cond_val2_direction ecx_tran_stage_data.cond_val2_direction%TYPE,
2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,

Line 2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,

2091: cond_val2_constant ecx_tran_stage_data.cond_val2_constant%TYPE,
2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,

Line 2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,

2092: operand1_level ecx_tran_stage_data.operand1_level%TYPE,
2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,

Line 2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,

2093: operand1_name ecx_tran_stage_data.operand1_name%TYPE,
2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,

Line 2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,

2094: operand1_pos ecx_tran_stage_data.operand1_pos%TYPE,
2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,

Line 2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,

2095: operand1_direction ecx_tran_stage_data.operand1_direction%TYPE,
2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,

Line 2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,

2096: operand1_constant ecx_tran_stage_data.operand1_constant%TYPE,
2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,

Line 2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,

2097: operand1_len ecx_tran_stage_data.operand1_len%TYPE,
2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,

Line 2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,

2098: operand1_start_pos ecx_tran_stage_data.operand1_start_pos%TYPE,
2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,

Line 2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,

2099: operand2_level ecx_tran_stage_data.operand2_level%TYPE,
2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,

Line 2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,

2100: operand2_name ecx_tran_stage_data.operand2_name%TYPE,
2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,

Line 2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,

2101: operand2_pos ecx_tran_stage_data.operand2_pos%TYPE,
2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,

Line 2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,

2102: operand2_direction ecx_tran_stage_data.operand2_direction%TYPE,
2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,

Line 2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,

2103: operand2_constant ecx_tran_stage_data.operand2_constant%TYPE,
2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,

Line 2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,

2104: operand3_level ecx_tran_stage_data.operand3_level%TYPE,
2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,

Line 2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,

2105: operand3_name ecx_tran_stage_data.operand3_name%TYPE,
2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,

Line 2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,

2106: operand3_pos ecx_tran_stage_data.operand3_pos%TYPE,
2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,

Line 2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,

2107: operand3_direction ecx_tran_stage_data.operand3_direction%TYPE,
2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,

Line 2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,

2108: operand3_constant ecx_tran_stage_data.operand3_constant%TYPE,
2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,

Line 2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,

2109: operand4_level ecx_tran_stage_data.operand4_level%TYPE,
2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,

Line 2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,

2110: operand4_name ecx_tran_stage_data.operand4_name%TYPE,
2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,

Line 2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,

2111: operand4_pos ecx_tran_stage_data.operand4_pos%TYPE,
2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,

Line 2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,

2112: operand4_direction ecx_tran_stage_data.operand4_direction%TYPE,
2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,

Line 2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,

2113: operand4_constant ecx_tran_stage_data.operand4_constant%TYPE,
2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,

Line 2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,

2114: operand5_level ecx_tran_stage_data.operand5_level%TYPE,
2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,

Line 2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,

2115: operand5_name ecx_tran_stage_data.operand5_name%TYPE,
2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,
2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);

Line 2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,

2116: operand5_pos ecx_tran_stage_data.operand5_pos%TYPE,
2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,
2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);
2124:

Line 2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,

2117: operand5_direction ecx_tran_stage_data.operand5_direction%TYPE,
2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,
2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);
2124:
2125: TYPE stage_data_table is TABLE of stage_data_record index by BINARY_INTEGER;

Line 2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,

2118: operand5_constant ecx_tran_stage_data.operand5_constant%TYPE,
2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,
2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);
2124:
2125: TYPE stage_data_table is TABLE of stage_data_record index by BINARY_INTEGER;
2126: i_stage_data stage_data_table;

Line 2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);

2119: operand6_level ecx_tran_stage_data.operand6_level%TYPE,
2120: operand6_name ecx_tran_stage_data.operand6_name%TYPE,
2121: operand6_pos ecx_tran_stage_data.operand6_pos%TYPE,
2122: operand6_direction ecx_tran_stage_data.operand6_direction%TYPE,
2123: operand6_constant ecx_tran_stage_data.operand6_constant%TYPE);
2124:
2125: TYPE stage_data_table is TABLE of stage_data_record index by BINARY_INTEGER;
2126: i_stage_data stage_data_table;
2127: */

Line 2128: TYPE t_transtage_id is TABLE of ecx_tran_stage_data.transtage_id%TYPE;

2124:
2125: TYPE stage_data_table is TABLE of stage_data_record index by BINARY_INTEGER;
2126: i_stage_data stage_data_table;
2127: */
2128: TYPE t_transtage_id is TABLE of ecx_tran_stage_data.transtage_id%TYPE;
2129: TYPE t_object_level is TABLE of ecx_object_levels.object_level%TYPE;
2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;

Line 2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;

2126: i_stage_data stage_data_table;
2127: */
2128: TYPE t_transtage_id is TABLE of ecx_tran_stage_data.transtage_id%TYPE;
2129: TYPE t_object_level is TABLE of ecx_object_levels.object_level%TYPE;
2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;

Line 2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;

2127: */
2128: TYPE t_transtage_id is TABLE of ecx_tran_stage_data.transtage_id%TYPE;
2129: TYPE t_object_level is TABLE of ecx_object_levels.object_level%TYPE;
2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;

Line 2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;

2128: TYPE t_transtage_id is TABLE of ecx_tran_stage_data.transtage_id%TYPE;
2129: TYPE t_object_level is TABLE of ecx_object_levels.object_level%TYPE;
2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;

Line 2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;

2129: TYPE t_object_level is TABLE of ecx_object_levels.object_level%TYPE;
2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;

Line 2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;

2130: TYPE t_objectlevel_id is TABLE of ecx_tran_stage_data.objectlevel_id%TYPE;
2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;

Line 2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;

2131: TYPE t_stage is TABLE of ecx_tran_stage_data.stage%TYPE;
2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;

Line 2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;

2132: TYPE t_object_direction is TABLE of ecx_tran_stage_data.object_direction%TYPE;
2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;

Line 2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;

2133: TYPE t_seq_number is TABLE of ecx_tran_stage_data.seq_number%TYPE;
2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;

Line 2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;

2134: TYPE t_action_type is TABLE of ecx_tran_stage_data.action_type%TYPE;
2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;

Line 2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;

2135: TYPE t_variable_level is TABLE of ecx_tran_stage_data.variable_level%TYPE;
2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;

Line 2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;

2136: TYPE t_variable_name is TABLE of ecx_tran_stage_data.variable_name%TYPE;
2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;

Line 2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;

2137: TYPE t_variable_direction is TABLE of ecx_tran_stage_data.variable_direction%TYPE;
2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;

Line 2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;

2138: TYPE t_variable_value is TABLE of ecx_tran_stage_data.variable_value%TYPE;
2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;

Line 2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;

2139: TYPE t_default_value is TABLE of ecx_tran_stage_data.default_value%TYPE;
2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;

Line 2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;

2140: TYPE t_sequence_name is TABLE of ecx_tran_stage_data.sequence_name%TYPE;
2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;

Line 2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;

2141: TYPE t_custom_procedure_name is TABLE of ecx_tran_stage_data.custom_procedure_name%TYPE;
2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;

Line 2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;

2142: TYPE t_data_type is TABLE of ecx_tran_stage_data.data_type%TYPE;
2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;

Line 2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;

2143: TYPE t_function_name is TABLE of ecx_tran_stage_data.function_name%TYPE;
2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;

Line 2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;

2144: TYPE t_where_clause is TABLE of ecx_tran_stage_data.where_clause%TYPE;
2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;

Line 2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;

2145: TYPE t_variable_pos is TABLE of ecx_tran_stage_data.variable_pos%TYPE;
2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;

Line 2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;

2146: TYPE t_cond_logical_operator is TABLE of ecx_tran_stage_data.cond_logical_operator%TYPE;
2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;

Line 2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;

2147: TYPE t_cond_operator1 is TABLE of ecx_tran_stage_data.cond_operator1%TYPE;
2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;

Line 2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;

2148: TYPE t_cond_var1_level is TABLE of ecx_tran_stage_data.cond_var1_level%TYPE;
2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;

Line 2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;

2149: TYPE t_cond_var1_name is TABLE of ecx_tran_stage_data.cond_var1_name%TYPE;
2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;

Line 2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;

2150: TYPE t_cond_var1_pos is TABLE of ecx_tran_stage_data.cond_var1_pos%TYPE;
2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;

Line 2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;

2151: TYPE t_cond_var1_direction is TABLE of ecx_tran_stage_data.cond_var1_direction%TYPE;
2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;

Line 2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;

2152: TYPE t_cond_var1_constant is TABLE of ecx_tran_stage_data.cond_var1_constant%TYPE;
2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;

Line 2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;

2153: TYPE t_cond_val1_level is TABLE of ecx_tran_stage_data.cond_val1_level%TYPE;
2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;

Line 2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;

2154: TYPE t_cond_val1_name is TABLE of ecx_tran_stage_data.cond_val1_name%TYPE;
2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;

Line 2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;

2155: TYPE t_cond_val1_pos is TABLE of ecx_tran_stage_data.cond_val1_pos%TYPE;
2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;

Line 2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;

2156: TYPE t_cond_val1_direction is TABLE of ecx_tran_stage_data.cond_val1_direction%TYPE;
2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;

Line 2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;

2157: TYPE t_cond_val1_constant is TABLE of ecx_tran_stage_data.cond_val1_constant%TYPE;
2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;

Line 2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;

2158: TYPE t_cond_operator2 is TABLE of ecx_tran_stage_data.cond_operator2%TYPE;
2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;

Line 2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;

2159: TYPE t_cond_var2_level is TABLE of ecx_tran_stage_data.cond_var2_level%TYPE;
2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;

Line 2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;

2160: TYPE t_cond_var2_name is TABLE of ecx_tran_stage_data.cond_var2_name%TYPE;
2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;

Line 2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;

2161: TYPE t_cond_var2_pos is TABLE of ecx_tran_stage_data.cond_var2_pos%TYPE;
2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;

Line 2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;

2162: TYPE t_cond_var2_direction is TABLE of ecx_tran_stage_data.cond_var2_direction%TYPE;
2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;

Line 2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;

2163: TYPE t_cond_var2_constant is TABLE of ecx_tran_stage_data.cond_var2_constant%TYPE;
2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;

Line 2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;

2164: TYPE t_cond_val2_level is TABLE of ecx_tran_stage_data.cond_val2_level%TYPE;
2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;

Line 2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;

2165: TYPE t_cond_val2_name is TABLE of ecx_tran_stage_data.cond_val2_name%TYPE;
2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;

Line 2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;

2166: TYPE t_cond_val2_pos is TABLE of ecx_tran_stage_data.cond_val2_pos%TYPE;
2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;

Line 2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;

2167: TYPE t_cond_val2_direction is TABLE of ecx_tran_stage_data.cond_val2_direction%TYPE;
2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;

Line 2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;

2168: TYPE t_cond_val2_constant is TABLE of ecx_tran_stage_data.cond_val2_constant%TYPE;
2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;

Line 2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;

2169: TYPE t_operand1_level is TABLE of ecx_tran_stage_data.operand1_level%TYPE;
2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;

Line 2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;

2170: TYPE t_operand1_name is TABLE of ecx_tran_stage_data.operand1_name%TYPE;
2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;

Line 2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;

2171: TYPE t_operand1_pos is TABLE of ecx_tran_stage_data.operand1_pos%TYPE;
2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;

Line 2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;

2172: TYPE t_operand1_direction is TABLE of ecx_tran_stage_data.operand1_direction%TYPE;
2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;

Line 2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;

2173: TYPE t_operand1_constant is TABLE of ecx_tran_stage_data.operand1_constant%TYPE;
2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;

Line 2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;

2174: TYPE t_operand1_len is TABLE of ecx_tran_stage_data.operand1_len%TYPE;
2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;

Line 2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;

2175: TYPE t_operand1_start_pos is TABLE of ecx_tran_stage_data.operand1_start_pos%TYPE;
2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;

Line 2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;

2176: TYPE t_operand2_level is TABLE of ecx_tran_stage_data.operand2_level%TYPE;
2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;

Line 2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;

2177: TYPE t_operand2_name is TABLE of ecx_tran_stage_data.operand2_name%TYPE;
2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;

Line 2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;

2178: TYPE t_operand2_pos is TABLE of ecx_tran_stage_data.operand2_pos%TYPE;
2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;

Line 2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;

2179: TYPE t_operand2_direction is TABLE of ecx_tran_stage_data.operand2_direction%TYPE;
2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;

Line 2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;

2180: TYPE t_operand2_constant is TABLE of ecx_tran_stage_data.operand2_constant%TYPE;
2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;

Line 2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;

2181: TYPE t_operand3_level is TABLE of ecx_tran_stage_data.operand3_level%TYPE;
2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;

Line 2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;

2182: TYPE t_operand3_name is TABLE of ecx_tran_stage_data.operand3_name%TYPE;
2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;

Line 2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;

2183: TYPE t_operand3_pos is TABLE of ecx_tran_stage_data.operand3_pos%TYPE;
2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;

Line 2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;

2184: TYPE t_operand3_direction is TABLE of ecx_tran_stage_data.operand3_direction%TYPE;
2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;

Line 2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;

2185: TYPE t_operand3_constant is TABLE of ecx_tran_stage_data.operand3_constant%TYPE;
2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;

Line 2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;

2186: TYPE t_operand4_level is TABLE of ecx_tran_stage_data.operand4_level%TYPE;
2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;

Line 2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;

2187: TYPE t_operand4_name is TABLE of ecx_tran_stage_data.operand4_name%TYPE;
2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;

Line 2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;

2188: TYPE t_operand4_pos is TABLE of ecx_tran_stage_data.operand4_pos%TYPE;
2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;

Line 2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;

2189: TYPE t_operand4_direction is TABLE of ecx_tran_stage_data.operand4_direction%TYPE;
2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;

Line 2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;

2190: TYPE t_operand4_constant is TABLE of ecx_tran_stage_data.operand4_constant%TYPE;
2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;

Line 2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;

2191: TYPE t_operand5_level is TABLE of ecx_tran_stage_data.operand5_level%TYPE;
2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;

Line 2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;

2192: TYPE t_operand5_name is TABLE of ecx_tran_stage_data.operand5_name%TYPE;
2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;
2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;

Line 2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;

2193: TYPE t_operand5_pos is TABLE of ecx_tran_stage_data.operand5_pos%TYPE;
2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;
2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;
2201:

Line 2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;

2194: TYPE t_operand5_direction is TABLE of ecx_tran_stage_data.operand5_direction%TYPE;
2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;
2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;
2201:
2202:

Line 2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;

2195: TYPE t_operand5_constant is TABLE of ecx_tran_stage_data.operand5_constant%TYPE;
2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;
2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;
2201:
2202:
2203: -- temp_stage_rec stage_data_record;

Line 2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;

2196: TYPE t_operand6_level is TABLE of ecx_tran_stage_data.operand6_level%TYPE;
2197: TYPE t_operand6_name is TABLE of ecx_tran_stage_data.operand6_name%TYPE;
2198: TYPE t_operand6_pos is TABLE of ecx_tran_stage_data.operand6_pos%TYPE;
2199: TYPE t_operand6_direction is TABLE of ecx_tran_stage_data.operand6_direction%TYPE;
2200: TYPE t_operand6_constant is TABLE of ecx_tran_stage_data.operand6_constant%TYPE;
2201:
2202:
2203: -- temp_stage_rec stage_data_record;
2204: temp_util_rec ecx_utils.stage_rec;

Line 2357: from ecx_tran_stage_data a,

2353: operand6_name,
2354: operand6_pos,
2355: operand6_direction,
2356: operand6_constant
2357: from ecx_tran_stage_data a,
2358: ecx_object_levels b
2359: where a.map_id = p_map_id
2360: and a.map_id = b.map_id
2361: and a.objectlevel_id = b.objectlevel_id

Line 2526: from ecx_tran_stage_data a,

2522: v_operand6_direction,
2523: v_operand6_constant
2524:
2525:
2526: from ecx_tran_stage_data a,
2527: ecx_object_levels b
2528: where a.map_id = i_map_id
2529: and a.map_id = b.map_id
2530: and a.objectlevel_id = b.objectlevel_id