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 ABAP Type group use (TYPE-POOLS tp)  Type group use (TYPE-POOLS tp)
2 CL_FDT_DECISION_TREE Forward declaration class (CLASS c DEFINITION DEFERRED)  Forward declaration class (CLASS c DEFINITION DEFERRED)
3 CL_FDT_EXPR_SV Forward declaration class (CLASS c DEFINITION DEFERRED)  Forward declaration class (CLASS c DEFINITION DEFERRED)
4 CL_FDT_STRUCTURE Forward declaration class (CLASS c DEFINITION DEFERRED)  Forward declaration class (CLASS c DEFINITION DEFERRED)
5 IF_FDT_DECISION_TREE Forward declaration interface (INTERFACE i DEFINITION DEF...  Forward declaration interface (INTERFACE i DEFINITION DEF...
6 IF_FDT_SEARCH_TREE Forward declaration interface (INTERFACE i DEFINITION DEF...  Forward declaration interface (INTERFACE i DEFINITION DEF...
7 IF_FDT_TYPES 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 GC_EXPR_0200 Instance attribute Private Type reference (TYPE) TABNAME 'FDT_EXPR_0200' Table Name 20070814
2 GC_EXPR_0210 Instance attribute Private Type reference (TYPE) TABNAME 'FDT_EXPR_0210' Table Name 20070814
3 GC_EXPR_0212 Instance attribute Private Type reference (TYPE) TABNAME 'FDT_EXPR_0212' Table Name 20090114
4 GC_MODE_FIRST_MATCH Constant Public Type reference (TYPE) C 'F' 20090616
5 GC_MODE_MULTI_MATCH Constant Public Type reference (TYPE) C 'M' 20090616
6 GC_MODE_QUALIFIED_MATCH Constant Public Type reference (TYPE) C 'Q' 20090616
7 GC_ROOT_NODE Instance attribute Private Attribute reference (LIKE) 20051011
8 GC_ROOT_PARENT_DUMMY Constant Private Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID '0000000000' Not really a node, just a dummy 20060314
9 GO_FACTORY Static Attribute Private Object reference (TYPE REF TO) IF_FDT_FACTORY FDT: Factory 20051005
10 MS_BUFFER Instance attribute Private Type reference (TYPE) S_BUFFER Transactional Buffer 20051005
11 MS_BUFFER_DB Instance attribute Private Type reference (TYPE) S_BUFFER Transactional Buffer 20051005
12 MTS_CACHING_EXPR Instance attribute Private Type reference (TYPE) CL_FDT_DECISION_TREE=>TS_EXPR_CACHE Table of expressions for prechaching 20130610
13 MV_ID Instance attribute Private Attribute reference (LIKE) 20051210
14 MV_MS_BUFFER_DB_LOADED Instance attribute Private Type reference (TYPE) ABAP_BOOL ABAP_TRUE: MS_BUFFER_DB is loaded 20070813
15 MV_MS_BUFFER_LOADED Instance attribute Private Type reference (TYPE) ABAP_BOOL ABAP_TRUE: MS_BUFFER is loaded 20070804
Methods
# Method Level Visibility Method type Description Created on
1 CALCULATE_RESULT_DS Instance method Private Method Calculates the result in a deep search 20090616
2 CALC_CACHE_FOR_GEN Instance method Private Method Calculates the cache for the generation 20130610
3 CHECK_NODE_PROPERTIES Instance method Private Method 20090115
4 CLASS_CONSTRUCTOR Static method Public Constructor 20051005
5 CREATE_NODE_P Instance method Private Method Create a node - private 20051005
6 CREATE_RESULT_DATA Instance method Private Method 20081020
7 DEEP_SEARCH Instance method Private Method perform a deep search (recursive algorithm) 20051005
8 DELETE_NODE_P Instance method Private Method Delete a node with or without all its children 20051005
9 GENERATE_SEARCH_TREE_PROCESS Instance method Private Method Generate Case Process 20081218
10 GENERATE_SUB_TREE_PROCESS Instance method Private Method 20081218
11 GET_ALL_DESCENDANTS Instance method Private Method Returns all descendants 20090616
12 GET_MAX_NODE_ID Instance method Private Method Get the maximum used node ID out of the buffer 20131203
13 IS_LEAF Instance method Private Method Checks if a node is a leaf (if a result is assigned to it) 20051013
14 LOAD_BUFFER Instance method Private Method Load the buffer 20051005
15 LOAD_BUFFER_DB Instance method Private Method Load the buffer from data base 20051005
16 PARSE_NODE Instance method Private Method Parse Search Tree 20090225
17 PARSE_TREE Instance method Private Method Parse Search Tree 20090313
18 PARSE_TREE_PROPERTY Instance method Private Method Parse Search Tree Special Attributes 20090317
19 SAVE_BUFFER_DB Instance method Private Method save the buffer 20051005
20 SET_BUFFER Instance method Private Method set the buffer 20051005
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 Changing CR_RESULT_DATA Call by reference Object reference (TYPE REF TO) DATA result data 20090616
2 Changing CV_FOUND Call by reference Type reference (TYPE) ABAP_BOOL Found a result 20090616
3 Importing IO_CONTEXT Call by reference Object reference (TYPE REF TO) IF_FDT_CONTEXT FDT: Context 20090616
4 Importing IO_PROCESSOR Call by reference Object reference (TYPE REF TO) IF_FDT_PROCESSOR FDT: Processor 20090616
5 Importing IO_RESULT_DO Call by reference Object reference (TYPE REF TO) IF_FDT_DATA_OBJECT Result Data Object 20090616
6 Importing IV_NODE Call by reference Type reference (TYPE) S_NODE_PROP Current Node 20090616
7 Importing 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 CX_FDT_PROCESSING 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 Importing IO_GEN_MNGR Call by reference Object reference (TYPE REF TO) CL_FDT_GENERATION_MANAGER Generation manager 20130610
2 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER Search tree buffer 20130610
3 Importing IV_TIMESTAMP Call by reference Type reference (TYPE) TIMESTAMP Generation timestamp 20130610
# Exception Resumable Description Created on
1 CX_FDT_INPUT FDT: Invalid Input 20130610

Method CHECK_NODE_PROPERTIES Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Exporting ET_MESSAGE Value transfer Type reference (TYPE) IF_FDT_TYPES=>T_MESSAGE Messages 20090616
2 Exporting ET_UNREACHABLE_NODES Call by reference Type reference (TYPE) T_NODE_ID List of unreachable nodes 20090616
3 Importing 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 Importing 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 Importing IV_CONDITION Call by reference Type reference (TYPE) IF_FDT_TYPES=>ID ID of condition assigned to iv_node (condition node) 20090115
6 Importing IV_NODE Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID Node 20090209
7 Importing IV_RESULT Call by reference Type reference (TYPE) IF_FDT_TYPES=>ID ID of result assigned to iv_node (leaf) 20090115
8 Importing IV_TIMESTAMP Call by reference Type reference (TYPE) IF_FDT_TYPES=>TIMESTAMP Time Stamp (active version) 20090115
9 Importing IV_TREE_PROP Call by reference Type reference (TYPE) S_TREE_PROP Tree property 20090616
10 Importing 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 CX_FDT 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 Exporting EV_NODE Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID ID of the new node 20051010
2 Importing IV_NODE Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID Node ID (e.g. during move_node) 20051005
3 Importing IV_PARENT Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID FDT: ID of a node in a tree 20051005
4 Importing 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 CX_FDT_INPUT FDT: Invalid Input 20051005

Method CREATE_RESULT_DATA Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Exporting EO_RESULT Call by reference Object reference (TYPE REF TO) IF_FDT_RESULT FDT: Result 20081020
2 Exporting EO_RESULT_DO Call by reference Object reference (TYPE REF TO) IF_FDT_DATA_OBJECT FDT: Data Object 20081020
3 Exporting ER_RESULT_DATA Value transfer Object reference (TYPE REF TO) DATA 20081020
4 Importing 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 Changing CR_RESULT_DATA Call by reference Object reference (TYPE REF TO) DATA result data 20051005
2 Changing CV_FOUND Call by reference Type reference (TYPE) ABAP_BOOL Found a result 20060314
3 Importing IO_CONTEXT Call by reference Object reference (TYPE REF TO) IF_FDT_CONTEXT FDT: Context 20051005
4 Importing IO_PROCESSOR Call by reference Object reference (TYPE REF TO) IF_FDT_PROCESSOR FDT: Processor 20051005
5 Importing IO_RESULT_DO Call by reference Object reference (TYPE REF TO) IF_FDT_DATA_OBJECT the Result Data Object 20060314
6 Importing IS_TREE_PROP Call by reference Type reference (TYPE) S_TREE_PROP Tree properties (FDT_EXPR_0200) 20090615
7 Importing IT_NODE_PROP Call by reference Type reference (TYPE) TS_NODE_PROP 20051005
8 Importing IT_TREE_STRUCT Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE 20051005
9 Importing 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 Importing 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 CX_FDT_CONFIG FDT: Insufficient Configuration 20051005
2 CX_FDT_PROCESSING FDT: Processing Error 20051005

Method DELETE_NODE_P Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IV_NODE Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>NODE_ID Node to be deleted 20051005
2 Importing 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 CX_FDT_INPUT 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 Changing CTS_USED_CONTEXT_ID Call by reference Type reference (TYPE) IF_FDT_TYPES=>TS_USED_CONTEXT_ID 20081218
2 Exporting ET_SOURCE_CODE Call by reference Type reference (TYPE) IF_FDT_TYPES=>T_SOURCE_CODE 20081218
3 Exporting EV_DEEP_TRACED Call by reference Type reference (TYPE) ABAP_BOOL 20090116
4 Importing IO_GENERATION_MNGR Call by reference Object reference (TYPE REF TO) CL_FDT_GENERATION_MANAGER FDT: Generation of Classes 20081218
5 Importing IV_CREATE_VARIABLE Call by reference Type reference (TYPE) ABAP_BOOL 20081218
6 Importing IV_FUNCTION_ID Call by reference Type reference (TYPE) IF_FDT_TYPES=>ID 20081218
7 Importing IV_TIMESTAMP Call by reference Type reference (TYPE) IF_FDT_TYPES=>TIMESTAMP 20081218
8 Importing IV_VARIABLE_NAME Call by reference Type reference (TYPE) CLIKE 20081218
# Exception Resumable Description Created on
1 CX_FDT_GENERATION FDT: Error in the Generation Process 20081218
2 CX_FDT_INPUT 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 Changing 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 Exporting ET_SOURCE_CODE Call by reference Type reference (TYPE) IF_FDT_TYPES=>T_SOURCE_CODE Table with Source Code 20081218
3 Importing IO_GENERATION_MNGR Call by reference Object reference (TYPE REF TO) CL_FDT_GENERATION_MANAGER FDT: Generation of Classes 20081218
4 Importing IO_RES_DO Call by reference Object reference (TYPE REF TO) IF_FDT_DATA_OBJECT FDT: Data Object 20090209
5 Importing IT_NODE_PROP Call by reference Type reference (TYPE) TS_NODE_PROP 20090116
6 Importing IT_TREE_STRUC Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE 20090116
7 Importing IV_CACHE_NAME Call by reference Type reference (TYPE) STRING Cache name 20130610
8 Importing IV_CONDITION_MET_NAME Call by reference Type reference (TYPE) STRING 20090116
9 Importing IV_CREATE_VARIABLE Call by reference Type reference (TYPE) ABAP_BOOL 20090213
10 Importing 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 Importing IV_FUNCTION_ID Call by reference Type reference (TYPE) IF_FDT_TYPES=>ID Universal Unique Identifier 20081218
12 Importing IV_MATCH_FOUND_NAME Call by reference Type reference (TYPE) STRING 20090116
13 Importing IV_MODE Call by reference Type reference (TYPE) C Search Tree Mode 20090616
14 Importing IV_TIMESTAMP Call by reference Type reference (TYPE) IF_FDT_TYPES=>TIMESTAMP Time Stamp (active version) 20081218
15 Importing IV_VARIABLE_NAME Call by reference Type reference (TYPE) CLIKE 20081218
# Exception Resumable Description Created on
1 CX_FDT_GENERATION 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 Changing CT_DESCENDANTS Value transfer Type reference (TYPE) T_NODE_ID 20090616
2 Importing 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 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER 20131203
2 Returning 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 Importing IV_NODE Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE~NODE_ID ID of the node 20051013
2 Returning RV_LEAF Value transfer Type reference (TYPE) ABAP_BOOL 20051013
# Exception Resumable Description Created on
1 CX_FDT_INPUT FDT: Invalid Input 20051013

Method LOAD_BUFFER Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IV_TIMESTAMP Call by reference Type reference (TYPE) IF_FDT_TYPES=>TIMESTAMP Timestamp of active version 20070811
2 Importing IV_VERSION Call by reference Type reference (TYPE) IF_FDT_TYPES=>VERSION Version 20070804
3 Returning RS_BUFFER Value transfer Type reference (TYPE) S_BUFFER Transactional Data Buffer 20051005
# Exception Resumable Description Created on
1 CX_FDT_INPUT FDT: Invalid Input 20070811

Method LOAD_BUFFER_DB Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IV_VERSION Call by reference Type reference (TYPE) IF_FDT_TYPES=>VERSION 20060127
2 Returning RS_BUFFER Value transfer Type reference (TYPE) S_BUFFER Transactional Data Buffer 20051005
# Exception Resumable Description Created on
1 CX_FDT_INPUT FDT: Invalid Input 20051005

Method PARSE_NODE Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IO_DOCUMENT Call by reference Object reference (TYPE REF TO) IF_IXML_DOCUMENT IF_IXML_DOCUMENT 20090225
2 Importing IO_PARENT Call by reference Object reference (TYPE REF TO) IF_IXML_ELEMENT 20090225
3 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER 20090225
4 Importing IS_HEADER Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_HEADER Trace Header 20090225
5 Importing IS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_RECORD Trace Record for Tree Expr. 20090306
6 Importing ITS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>TS_RECORD 20090317
7 Importing ITS_TRUE_PATH Call by reference Type reference (TYPE) IF_FDT_SEARCH_TREE=>TS_TREE_STRUCTURE 20090313
8 Importing IT_HEADER Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>T_HEADER Trace Headers 20090225
9 Importing 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 CX_FDT_INPUT FDT: Invalid Input 20090225
2 CX_FDT_LEAN_TRACE FDT: System Failure 20090422

Method PARSE_TREE Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IO_DOCUMENT Call by reference Object reference (TYPE REF TO) IF_IXML_DOCUMENT IF_IXML_DOCUMENT 20090313
2 Importing IO_PARENT Call by reference Object reference (TYPE REF TO) IF_IXML_ELEMENT 20090313
3 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER 20090313
4 Importing IS_HEADER Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_HEADER Trace Header for Tree Expr 20090313
5 Importing IS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_RECORD Trace Record for Tree Expr 20090313
6 Importing ITS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>TS_RECORD 20090317
7 Importing 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 CX_FDT_INPUT FDT: Invalid Input 20090313
2 CX_FDT_LEAN_TRACE FDT: System Failure 20090422

Method PARSE_TREE_PROPERTY Signature

# Type Parameter Pass Value Optional Typing Method Associated Type Default value Description Created on
1 Importing IO_DOCUMENT Call by reference Object reference (TYPE REF TO) IF_IXML_DOCUMENT IF_IXML_DOCUMENT 20090317
2 Importing IO_PARENT Call by reference Object reference (TYPE REF TO) IF_IXML_ELEMENT 20090317
3 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER 20090317
4 Importing IS_HEADER Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_HEADER Trace Header for Tree Expr 20090317
5 Importing IS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>S_RECORD Trace Record for Tree Expr 20090317
6 Importing ITS_RECORD Call by reference Type reference (TYPE) IF_FDT_LEAN_TRACE=>TS_RECORD 20090317
7 Importing 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 CX_FDT_INPUT FDT: Invalid Input 20090317
2 CX_FDT_LEAN_TRACE 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 Importing IS_BUFFER Call by reference Type reference (TYPE) S_BUFFER Transactional Data Buffer 20051005
2 Importing IV_CHECK_NODE_PROP Call by reference Type reference (TYPE) ABAP_BOOL ABAP_FALSE 20051005
3 Importing IV_CHECK_STRUCT Call by reference Type reference (TYPE) ABAP_BOOL ABAP_FALSE 20051005
4 Importing IV_CHECK_TREE_PROP Call by reference Type reference (TYPE) ABAP_BOOL ABAP_FALSE 20051005
# Exception Resumable Description Created on
1 CX_FDT_INPUT FDT: Invalid Input 20051011
History
Last changed by/on SAP  20140121 
SAP Release Created in 710