SAP ABAP Interface IF_BSCL_SQL_TYPES (Types for SQL generation)
Hierarchy
☛
SAP_BS_FND (Software Component) SAP Business Suite Foundation
⤷
CA-CL (Application Component) Classification
⤷
BSCL_VIEW_KIT (Package) Classification: Tools for view generation

⤷

⤷

Meta Relationship - Used By
# | Relationship type | Used by | Short Description | Created on |
---|---|---|---|---|
1 | Interface composition (i COMPRISING i_ref) | IF_BSCL_DDL_VIEW_STATEMENT | SQL for views | 20130118 |
2 | Interface composition (i COMPRISING i_ref) | IF_BSCL_DML_SELECT_STATEMENT | SQL for views | 20130118 |
3 | Interface composition (i COMPRISING i_ref) | IF_BSCL_SQL_STATEMENT | General SQL behavior | 20121112 |
4 | Interface implementation (CLASS c. INTERFACES i_ref) | CL_BSCL_CHARACTERISTIC | Characteristic | 20130121 |
5 | Interface implementation (CLASS c. INTERFACES i_ref) | CL_BSCL_CLASS_VIEW | Class view | 20121102 |
6 | Interface implementation (CLASS c. INTERFACES i_ref) | CL_BSCL_OBJECT_TYPE | Object type | 20121105 |
7 | Interface implementation (CLASS c. INTERFACES i_ref) | CL_BSCL_SQL_STATEMENT | Basic functions for SQL generation | 20121102 |
Properties
Interface | IF_BSCL_SQL_TYPES | |
Short Description | Types for SQL generation |
General Data
Package | BSCL_VIEW_KIT | Classification: Tools for view generation |
Created | 20121102 | SAP |
Last changed | 20131127 | SAP |
Unicode checks active |
Forward declarations
Interface IF_BSCL_SQL_TYPES has no forward declaration.
Interfaces
Interface IF_BSCL_SQL_TYPES has no interface.
Friends
Interface IF_BSCL_SQL_TYPES has no friend.
Attributes
Interface IF_BSCL_SQL_TYPES has no attribute.
Methods
Interface IF_BSCL_SQL_TYPES has no method.
Events
Interface IF_BSCL_SQL_TYPES has no event.
Types
# | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
---|---|---|---|---|---|---|---|
1 | TT_BASIC_CALC_OPERATIONS | Public | See coding | 20130107 | tt_basic_calc_operations TYPE STANDARD TABLE OF ty_basic_calc_operation WITH DEFAULT KEY
|
||
2 | TT_CONVERSION_ARGUMENTS | Public | See coding | 20130121 | tt_conversion_arguments TYPE STANDARD TABLE OF ty_conversion_argument WITH DEFAULT KEY
|
||
3 | TT_FIELD_PREDICATES | Public | See coding | 20121105 | tt_field_predicates TYPE STANDARD TABLE OF ty_field_predicate WITH DEFAULT KEY
|
||
4 | TT_FIELD_VALUES | Public | See coding | 20121102 | tt_field_values TYPE STANDARD TABLE OF ty_field_value WITH DEFAULT KEY
|
||
5 | TT_JOINS | Public | See coding | 20121102 | tt_joins TYPE STANDARD TABLE OF ty_join WITH DEFAULT KEY
|
||
6 | TT_REFERENCE_VALUES | Public | See coding | 20130228 | tt_reference_values TYPE STANDARD TABLE OF ty_reference_value WITH DEFAULT KEY
|
||
7 | TT_SQL_FUNCTIONS | Public | See coding | 20130107 | tt_sql_functions TYPE STANDARD TABLE OF ty_sql_function WITH DEFAULT KEY
|
||
8 | TT_SUBJECTS | Public | See coding | 20121109 | tt_subjects TYPE STANDARD TABLE OF ty_subject WITH DEFAULT KEY
|
||
9 | TT_TABLE_COLUMNS | Public | See coding | 20121102 | tt_table_columns TYPE STANDARD TABLE OF ty_table_column WITH DEFAULT KEY
|
||
10 | TT_TABLE_FIELDS | Public | See coding | 20121102 | tt_table_fields TYPE STANDARD TABLE OF ty_table_field WITH DEFAULT KEY
|
||
11 | TT_VALUE_MAPPINGS | Public | See coding | 20121120 | tt_value_mappings TYPE STANDARD TABLE OF ty_value_mapping WITH DEFAULT KEY
|
||
12 | TT_VIEW_COLUMNS | Public | See coding | 20121102 | tt_view_columns TYPE STANDARD TABLE OF ty_view_column WITH DEFAULT KEY
|
||
13 | TY_BASIC_CALC_OPERATION | Public | See coding | 20130107 | BEGIN OF ty_basic_calc_operation,
operator TYPE string,
operand TYPE string,
END OF ty_basic_calc_operation
|
||
14 | TY_CONVERSION_ARGUMENT | Public | See coding | 20130121 | BEGIN OF ty_conversion_argument,
argument TYPE string,
sort_order TYPE i,
END OF ty_conversion_argument
|
||
15 | TY_FIELD_PAIR | Public | See coding | 20121105 | BEGIN OF ty_field_pair,
field_1 TYPE ty_table_field,
field_2 TYPE ty_table_field,
END OF ty_field_pair
|
||
16 | TY_FIELD_PREDICATE | Public | See coding | 20121105 | BEGIN OF ty_field_predicate,
own_field TYPE string,
ref_field TYPE ty_table_field,
fix_value TYPE string,
END OF ty_field_predicate
|
||
17 | TY_FIELD_VALUE | Public | See coding | 20121102 | BEGIN OF ty_field_value,
table TYPE string,
field TYPE string,
value TYPE string,
END OF ty_field_value
|
||
18 | TY_JOIN | Public | See coding | 20121102 | BEGIN OF ty_join,
join_type TYPE i,
table_name TYPE string,
table_alias TYPE string,
predicates TYPE tt_field_predicates,
END OF ty_join
|
||
19 | TY_REFERENCE_VALUE | Public | See coding | 20130228 | BEGIN OF ty_reference_value,
value TYPE string,
comparator TYPE string,
END OF ty_reference_value
|
||
20 | TY_SQL_FUNCTION | Public | See coding | 20121105 | BEGIN OF ty_sql_function,
name TYPE string,
field_operations TYPE tt_basic_calc_operations,
arguments TYPE tt_conversion_arguments,
END OF ty_sql_function
|
||
21 | TY_SUBJECT | Public | See coding | 20121109 | BEGIN OF ty_subject,
name TYPE string,
path TYPE string,
END OF ty_subject
|
||
22 | TY_TABLE_COLUMN | Public | See coding | 20121102 | BEGIN OF ty_table_column,
name TYPE string,
fieldtype TYPE string,
END OF ty_table_column
|
||
23 | TY_TABLE_FIELD | Public | See coding | 20121102 | BEGIN OF ty_table_field,
table TYPE string,
field TYPE string,
END OF ty_table_field
|
||
24 | TY_VALUE_ADJUSTMENT | Public | See coding | 20130301 | BEGIN OF ty_value_adjustment,
fix_value TYPE string,
value_conversions TYPE tt_sql_functions,
END OF ty_value_adjustment
|
||
25 | TY_VALUE_MAPPING | Public | See coding | 20121120 | BEGIN OF ty_value_mapping,
is_default_value TYPE abap_bool,
original_values TYPE tt_reference_values,
original_values_conj TYPE abap_bool, " TRUE means original values need to be combined by conjunction otherwise by disjunction
new_value TYPE ty_value_adjustment,
END OF ty_value_mapping
|
||
26 | TY_VIEW_COLUMN | Public | See coding | 20121102 | BEGIN OF ty_view_column,
table TYPE string,
field TYPE string,
field_type TYPE string,
field_length TYPE i,
field_length_decimals TYPE i,
field_mapping TYPE tt_value_mappings,
conversions TYPE tt_sql_functions,
alias TYPE string,
description TYPE string,
END OF ty_view_column
|
History
Last changed by/on | SAP | 20131127 |
SAP Release Created in |