SAP ABAP Class CL_FDT_SEARCH_TREE (FDT: Search Tree)
Hierarchy
☛
SAP_BASIS (Software Component) SAP Basis Component
⤷
BC-SRV-BR (Application Component) BRFplus - ABAP-Based Business Rules
⤷
SFDT_EXPRESSIONS (Package) BRFplus: Expressions

⤷

⤷

Meta Relationship - Using
# | Relationship type | Using | Short Description | Created on |
---|---|---|---|---|
1 | Inheritance (c INHERITING FROM c_ref) | CL_FDT_EXPRESSION | FDT: Abstract Expression Class | 20051005 |
2 | Interface implementation (CLASS c. INTERFACES i_ref) | IF_FDT_SEARCH_TREE | FDT: Search Tree | 20051005 |
Properties
Class | CL_FDT_SEARCH_TREE | |
Short Description | FDT: Search Tree | |
Super Class | CL_FDT_EXPRESSION | FDT: Abstract Expression Class |
Instantiability of a Class | 1 | Protected |
Final |
General Data
Message Class | FDT_EXPRESSIONS | |
Program status | P | SAP Standard Production Program |
Category | 0 | |
Package | SFDT_EXPRESSIONS | BRFplus: Expressions |
Created | 20051005 | SAP |
Last change | 20140121 | SAP |
Shared Memory-enabled | ||
Fixed point arithmetic | ||
Unicode checks active |
Forward declarations
# | Type group / Object type | Type | Type Description |
---|---|---|---|
1 | ![]() |
Type group use (TYPE-POOLS tp) | Type group use (TYPE-POOLS tp) |
2 | ![]() |
Forward declaration class (CLASS c DEFINITION DEFERRED) | Forward declaration class (CLASS c DEFINITION DEFERRED) |
3 | ![]() |
Forward declaration class (CLASS c DEFINITION DEFERRED) | Forward declaration class (CLASS c DEFINITION DEFERRED) |
4 | ![]() |
Forward declaration class (CLASS c DEFINITION DEFERRED) | Forward declaration class (CLASS c DEFINITION DEFERRED) |
5 | ![]() |
Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
6 | ![]() |
Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
7 | ![]() |
Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
Interfaces
# | Interface | Abstract | Final | Description | Created on |
---|---|---|---|---|---|
1 | IF_FDT_SEARCH_TREE | FDT: Search Tree | 20051005 |
Friends
# | Friend | Modeled only | Created on | Description |
---|---|---|---|---|
1 | CL_FDT_FACTORY | 20051027 | FDT: Factory |
Attributes
# | Attribute | Level | Visibility | Read only | Typing | Associated Type | Initial Value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
Instance attribute | Private | Type reference (TYPE) | TABNAME | 'FDT_EXPR_0200' | Table Name | 20070814 | |
2 | ![]() |
Instance attribute | Private | Type reference (TYPE) | TABNAME | 'FDT_EXPR_0210' | Table Name | 20070814 | |
3 | ![]() |
Instance attribute | Private | Type reference (TYPE) | TABNAME | 'FDT_EXPR_0212' | Table Name | 20090114 | |
4 | ![]() |
Constant | Public | Type reference (TYPE) | C | 'F' | 20090616 | ||
5 | ![]() |
Constant | Public | Type reference (TYPE) | C | 'M' | 20090616 | ||
6 | ![]() |
Constant | Public | Type reference (TYPE) | C | 'Q' | 20090616 | ||
7 | ![]() |
Instance attribute | Private | Attribute reference (LIKE) | 20051011 | ||||
8 | ![]() |
Constant | Private | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | '0000000000' | Not really a node, just a dummy | 20060314 | |
9 | ![]() |
Static Attribute | Private | Object reference (TYPE REF TO) | IF_FDT_FACTORY | FDT: Factory | 20051005 | ||
10 | ![]() |
Instance attribute | Private | Type reference (TYPE) | S_BUFFER | Transactional Buffer | 20051005 | ||
11 | ![]() |
Instance attribute | Private | Type reference (TYPE) | S_BUFFER | Transactional Buffer | 20051005 | ||
12 | ![]() |
Instance attribute | Private | Type reference (TYPE) | CL_FDT_DECISION_TREE=>TS_EXPR_CACHE | Table of expressions for prechaching | 20130610 | ||
13 | ![]() |
Instance attribute | Private | Attribute reference (LIKE) | 20051210 | ||||
14 | ![]() |
Instance attribute | Private | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: MS_BUFFER_DB is loaded | 20070813 | ||
15 | ![]() |
Instance attribute | Private | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: MS_BUFFER is loaded | 20070804 |
Methods
Events
Class CL_FDT_SEARCH_TREE has no event.
Types
# | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
---|---|---|---|---|---|---|---|
1 | S_BUFFER | Protected | See coding | 20051005 | BEGIN OF s_buffer,
s_tree_prop TYPE s_tree_prop,
ts_tree_struct TYPE if_fdt_search_tree~ts_tree_structure,
ts_node_prop TYPE ts_node_prop,
END OF s_buffer
|
||
2 | S_NODE_PROP | Public | See coding | 20051005 | BEGIN OF s_node_prop,
node TYPE if_fdt_search_tree=>node_id,
parent TYPE if_fdt_search_tree~s_tree_structure-parent,
seqnr TYPE if_fdt_search_tree~s_tree_structure-seqnr,
condition_id TYPE if_fdt_types=>id,
s_param_range TYPE cl_fdt_expr_sv=>s_param_range,
result_id TYPE if_fdt_types=>id,
s_result_value TYPE cl_fdt_expr_sv=>s_value,
END OF s_node_prop
|
||
3 | S_TREE_PROP | Public | See coding | Tree properties (FDT_EXPR_0200) | 20051005 | BEGIN OF s_tree_prop,
multiple_match TYPE abap_bool, "May return multiple matches, does not stop at first match
qualified_match TYPE abap_bool, "Special algorithm for tree processing
executes_action TYPE abap_bool, "Does execute an action and not return a value
allow_no_match TYPE abap_bool, "If not match is found return empty result
only_leaf_result TYPE abap_bool, "Results can only be defined at leaf node
END OF s_tree_prop
|
|
4 | TS_NODE_PROP | Public | See coding | 20051005 | ts_node_prop TYPE SORTED TABLE OF s_node_prop
WITH UNIQUE KEY node
|
||
5 | T_NODE_ID | Public | See coding | 20090616 | t_node_id TYPE STANDARD TABLE OF if_fdt_search_tree=>node_id
WITH DEFAULT KEY
|
Method Signatures
Method CALCULATE_RESULT_DS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
CR_RESULT_DATA | Call by reference | Object reference (TYPE REF TO) | DATA | result data | 20090616 | ||
2 | ![]() |
CV_FOUND | Call by reference | Type reference (TYPE) | ABAP_BOOL | Found a result | 20090616 | ||
3 | ![]() |
IO_CONTEXT | Call by reference | Object reference (TYPE REF TO) | IF_FDT_CONTEXT | FDT: Context | 20090616 | ||
4 | ![]() |
IO_PROCESSOR | Call by reference | Object reference (TYPE REF TO) | IF_FDT_PROCESSOR | FDT: Processor | 20090616 | ||
5 | ![]() |
IO_RESULT_DO | Call by reference | Object reference (TYPE REF TO) | IF_FDT_DATA_OBJECT | Result Data Object | 20090616 | ||
6 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | S_NODE_PROP | Current Node | 20090616 | ||
7 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | UTC Time Stamp in Short Form (YYYYMMDDhhmmss) | 20090616 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Processing Error | 20090616 |
Method CALC_CACHE_FOR_GEN Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IO_GEN_MNGR | Call by reference | Object reference (TYPE REF TO) | CL_FDT_GENERATION_MANAGER | Generation manager | 20130610 | ||
2 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | Search tree buffer | 20130610 | ||
3 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | TIMESTAMP | Generation timestamp | 20130610 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20130610 |
Method CHECK_NODE_PROPERTIES Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
ET_MESSAGE | Value transfer | Type reference (TYPE) | IF_FDT_TYPES=>T_MESSAGE | Messages | 20090616 | ||
2 | ![]() |
ET_UNREACHABLE_NODES | Call by reference | Type reference (TYPE) | T_NODE_ID | List of unreachable nodes | 20090616 | ||
3 | ![]() |
IS_RANGE | Call by reference | Type reference (TYPE) | CL_FDT_EXPR_SV=>S_PARAM_RANGE | Implicit Range to iv_node (exclusive to condition) | 20090115 | ||
4 | ![]() |
IS_RESULT | Call by reference | Type reference (TYPE) | CL_FDT_EXPR_SV=>S_VALUE | Resulf value assigned to node (exclusive to result ID) | 20090115 | ||
5 | ![]() |
IV_CONDITION | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of condition assigned to iv_node (condition node) | 20090115 | ||
6 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | Node | 20090209 | ||
7 | ![]() |
IV_RESULT | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of result assigned to iv_node (leaf) | 20090115 | ||
8 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20090115 | ||
9 | ![]() |
IV_TREE_PROP | Call by reference | Type reference (TYPE) | S_TREE_PROP | Tree property | 20090616 | ||
10 | ![]() |
IV_WEAK | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | ABAP_TRUE: only perform weak checks | 20090115 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Abstract Exception Class | 20090120 |
Method CLASS_CONSTRUCTOR Signature
Method CLASS_CONSTRUCTOR on class CL_FDT_SEARCH_TREE has no parameter.
Method CLASS_CONSTRUCTOR on class CL_FDT_SEARCH_TREE has no exception.
Method CREATE_NODE_P Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
EV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | ID of the new node | 20051010 | ||
2 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | Node ID (e.g. during move_node) | 20051005 | ||
3 | ![]() |
IV_PARENT | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | FDT: ID of a node in a tree | 20051005 | ||
4 | ![]() |
IV_SIBLING | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | ID of preceding sibling node | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051005 |
Method CREATE_RESULT_DATA Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
EO_RESULT | Call by reference | Object reference (TYPE REF TO) | IF_FDT_RESULT | FDT: Result | 20081020 | ||
2 | ![]() |
EO_RESULT_DO | Call by reference | Object reference (TYPE REF TO) | IF_FDT_DATA_OBJECT | FDT: Data Object | 20081020 | ||
3 | ![]() |
ER_RESULT_DATA | Value transfer | Object reference (TYPE REF TO) | DATA | 20081020 | |||
4 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20081020 |
Method CREATE_RESULT_DATA on class CL_FDT_SEARCH_TREE has no exception.
Method DEEP_SEARCH Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
CR_RESULT_DATA | Call by reference | Object reference (TYPE REF TO) | DATA | result data | 20051005 | ||
2 | ![]() |
CV_FOUND | Call by reference | Type reference (TYPE) | ABAP_BOOL | Found a result | 20060314 | ||
3 | ![]() |
IO_CONTEXT | Call by reference | Object reference (TYPE REF TO) | IF_FDT_CONTEXT | FDT: Context | 20051005 | ||
4 | ![]() |
IO_PROCESSOR | Call by reference | Object reference (TYPE REF TO) | IF_FDT_PROCESSOR | FDT: Processor | 20051005 | ||
5 | ![]() |
IO_RESULT_DO | Call by reference | Object reference (TYPE REF TO) | IF_FDT_DATA_OBJECT | the Result Data Object | 20060314 | ||
6 | ![]() |
IS_TREE_PROP | Call by reference | Type reference (TYPE) | S_TREE_PROP | Tree properties (FDT_EXPR_0200) | 20090615 | ||
7 | ![]() |
IT_NODE_PROP | Call by reference | Type reference (TYPE) | TS_NODE_PROP | 20051005 | |||
8 | ![]() |
IT_TREE_STRUCT | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE | 20051005 | |||
9 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | Parent node of the sub tree we search in | 20051005 | ||
10 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | UTC Time Stamp in Short Form (YYYYMMDDhhmmss) | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Insufficient Configuration | 20051005 | |
2 | ![]() |
FDT: Processing Error | 20051005 |
Method DELETE_NODE_P Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | Node to be deleted | 20051005 | ||
2 | ![]() |
IV_WITH_SUB_NODES | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | Delete whole branch incl. sub-nodes of iv_node? | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051005 |
Method GENERATE_SEARCH_TREE_PROCESS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
CTS_USED_CONTEXT_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TS_USED_CONTEXT_ID | 20081218 | |||
2 | ![]() |
ET_SOURCE_CODE | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>T_SOURCE_CODE | 20081218 | |||
3 | ![]() |
EV_DEEP_TRACED | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20090116 | |||
4 | ![]() |
IO_GENERATION_MNGR | Call by reference | Object reference (TYPE REF TO) | CL_FDT_GENERATION_MANAGER | FDT: Generation of Classes | 20081218 | ||
5 | ![]() |
IV_CREATE_VARIABLE | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20081218 | |||
6 | ![]() |
IV_FUNCTION_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | 20081218 | |||
7 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | 20081218 | |||
8 | ![]() |
IV_VARIABLE_NAME | Call by reference | Type reference (TYPE) | CLIKE | 20081218 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Error in the Generation Process | 20081218 | |
2 | ![]() |
FDT: Invalid Input | 20081218 |
Method GENERATE_SUB_TREE_PROCESS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
CTS_USED_CONTEXT_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TS_USED_CONTEXT_ID | Actually used / required ID's from context in generated code | 20081218 | ||
2 | ![]() |
ET_SOURCE_CODE | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>T_SOURCE_CODE | Table with Source Code | 20081218 | ||
3 | ![]() |
IO_GENERATION_MNGR | Call by reference | Object reference (TYPE REF TO) | CL_FDT_GENERATION_MANAGER | FDT: Generation of Classes | 20081218 | ||
4 | ![]() |
IO_RES_DO | Call by reference | Object reference (TYPE REF TO) | IF_FDT_DATA_OBJECT | FDT: Data Object | 20090209 | ||
5 | ![]() |
IT_NODE_PROP | Call by reference | Type reference (TYPE) | TS_NODE_PROP | 20090116 | |||
6 | ![]() |
IT_TREE_STRUC | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE | 20090116 | |||
7 | ![]() |
IV_CACHE_NAME | Call by reference | Type reference (TYPE) | STRING | Cache name | 20130610 | ||
8 | ![]() |
IV_CONDITION_MET_NAME | Call by reference | Type reference (TYPE) | STRING | 20090116 | |||
9 | ![]() |
IV_CREATE_VARIABLE | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20090213 | |||
10 | ![]() |
IV_CURRENT_NODE | Call by reference | Type reference (TYPE) | IF_FDT_DECISION_TREE=>NODE_ID | FDT: ID of a node in a tree | 20081218 | ||
11 | ![]() |
IV_FUNCTION_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | Universal Unique Identifier | 20081218 | ||
12 | ![]() |
IV_MATCH_FOUND_NAME | Call by reference | Type reference (TYPE) | STRING | 20090116 | |||
13 | ![]() |
IV_MODE | Call by reference | Type reference (TYPE) | C | Search Tree Mode | 20090616 | ||
14 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20081218 | ||
15 | ![]() |
IV_VARIABLE_NAME | Call by reference | Type reference (TYPE) | CLIKE | 20081218 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Error in the Generation Process | 20090324 |
Method GET_ALL_DESCENDANTS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
CT_DESCENDANTS | Value transfer | Type reference (TYPE) | T_NODE_ID | 20090616 | |||
2 | ![]() |
IV_PARENT_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>NODE_ID | FDT: ID of a node in a tree | 20090616 |
Method GET_ALL_DESCENDANTS on class CL_FDT_SEARCH_TREE has no exception.
Method GET_MAX_NODE_ID Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | 20131203 | |||
2 | ![]() |
RV_MAX_NODE_ID | Value transfer | Type reference (TYPE) | IF_FDT_DECISION_TREE=>NODE_ID | FDT: ID of a node in a tree | 20131203 |
Method GET_MAX_NODE_ID on class CL_FDT_SEARCH_TREE has no exception.
Method IS_LEAF Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE~NODE_ID | ID of the node | 20051013 | ||
2 | ![]() |
RV_LEAF | Value transfer | Type reference (TYPE) | ABAP_BOOL | 20051013 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051013 |
Method LOAD_BUFFER Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Timestamp of active version | 20070811 | ||
2 | ![]() |
IV_VERSION | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>VERSION | Version | 20070804 | ||
3 | ![]() |
RS_BUFFER | Value transfer | Type reference (TYPE) | S_BUFFER | Transactional Data Buffer | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20070811 |
Method LOAD_BUFFER_DB Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IV_VERSION | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>VERSION | 20060127 | |||
2 | ![]() |
RS_BUFFER | Value transfer | Type reference (TYPE) | S_BUFFER | Transactional Data Buffer | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051005 |
Method PARSE_NODE Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IO_DOCUMENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_DOCUMENT | IF_IXML_DOCUMENT | 20090225 | ||
2 | ![]() |
IO_PARENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_ELEMENT | 20090225 | |||
3 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | 20090225 | |||
4 | ![]() |
IS_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_HEADER | Trace Header | 20090225 | ||
5 | ![]() |
IS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_RECORD | Trace Record for Tree Expr. | 20090306 | ||
6 | ![]() |
ITS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>TS_RECORD | 20090317 | |||
7 | ![]() |
ITS_TRUE_PATH | Call by reference | Type reference (TYPE) | IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE | 20090313 | |||
8 | ![]() |
IT_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>T_HEADER | Trace Headers | 20090225 | ||
9 | ![]() |
IV_NODE | Call by reference | Type reference (TYPE) | FDT_NODE_ID | FDT: ID of a node in a tree | 20090225 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20090225 | |
2 | ![]() |
FDT: System Failure | 20090422 |
Method PARSE_TREE Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IO_DOCUMENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_DOCUMENT | IF_IXML_DOCUMENT | 20090313 | ||
2 | ![]() |
IO_PARENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_ELEMENT | 20090313 | |||
3 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | 20090313 | |||
4 | ![]() |
IS_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_HEADER | Trace Header for Tree Expr | 20090313 | ||
5 | ![]() |
IS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_RECORD | Trace Record for Tree Expr | 20090313 | ||
6 | ![]() |
ITS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>TS_RECORD | 20090317 | |||
7 | ![]() |
IT_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>T_HEADER | Trace Headers for complete traces | 20090313 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20090313 | |
2 | ![]() |
FDT: System Failure | 20090422 |
Method PARSE_TREE_PROPERTY Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IO_DOCUMENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_DOCUMENT | IF_IXML_DOCUMENT | 20090317 | ||
2 | ![]() |
IO_PARENT | Call by reference | Object reference (TYPE REF TO) | IF_IXML_ELEMENT | 20090317 | |||
3 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | 20090317 | |||
4 | ![]() |
IS_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_HEADER | Trace Header for Tree Expr | 20090317 | ||
5 | ![]() |
IS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>S_RECORD | Trace Record for Tree Expr | 20090317 | ||
6 | ![]() |
ITS_RECORD | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>TS_RECORD | 20090317 | |||
7 | ![]() |
IT_HEADER | Call by reference | Type reference (TYPE) | IF_FDT_LEAN_TRACE=>T_HEADER | Trace Headers for complete traces | 20090317 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20090317 | |
2 | ![]() |
FDT: System Failure | 20090422 |
Method SAVE_BUFFER_DB Signature
Method SAVE_BUFFER_DB on class CL_FDT_SEARCH_TREE has no parameter.
Method SAVE_BUFFER_DB on class CL_FDT_SEARCH_TREE has no exception.
Method SET_BUFFER Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IS_BUFFER | Call by reference | Type reference (TYPE) | S_BUFFER | Transactional Data Buffer | 20051005 | ||
2 | ![]() |
IV_CHECK_NODE_PROP | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20051005 | ||
3 | ![]() |
IV_CHECK_STRUCT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20051005 | ||
4 | ![]() |
IV_CHECK_TREE_PROP | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20051005 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051011 |
History
Last changed by/on | SAP | 20140121 |
SAP Release Created in | 710 |