SAP ABAP Class IF_FDT_BOOLEAN (FDT: Boolean Logic)
Meta Relationship - Using
# | Relationship type | Using | Short Description | Created on |
---|---|---|---|---|
1 | Interface composition (i COMPRISING i_ref) | IF_FDT_EXPRESSION | FDT: Expression | 20051031 |
Meta Relationship - Used By
# | Relationship type | Used by | Short Description | Created on |
---|---|---|---|---|
1 | Interface implementation (CLASS c. INTERFACES i_ref) | CL_FDT_BOOLEAN | FDT: Boolean Logic | 20051031 |
Properties
Class | IF_FDT_BOOLEAN | |
Short Description | FDT: Boolean Logic | |
Super Class | ||
Instantiability of a Class | 2 | Public |
Final |
General Data
Message Class | ||
Program status | ||
Category | 0 | |
Package | ||
Created | 20051031 | SAP |
Last change | 20141121 | |
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 interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
4 | ![]() |
Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
Interfaces
Class IF_FDT_BOOLEAN has no interface implemented.
Friends
Class IF_FDT_BOOLEAN has no friend class.
Attributes
# | Attribute | Level | Visibility | Read only | Typing | Associated Type | Initial Value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
Constant | Public | Type reference (TYPE) | IF_FDT_TYPES=>ID | IF_FDT_CONSTANTS=>GC_EXTY_BOOLEAN | Expression Type "Boolean" | 20080416 | |
2 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '7' | Operation with all operands AND combined | 20080308 | |
3 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '8' | Operation with all operands OR combined | 20080308 | |
4 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '2' | Operation A AND B | 20051031 | |
5 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '6' | Operation A AND B AND C | 20051031 | |
6 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '4' | Operation A AND B OR C | 20051031 | |
7 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '1' | Operation A OR B | 20051031 | |
8 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '5' | Operation (A OR B) AND C | 20051031 | |
9 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '3' | Operation A OR B OR C | 20051031 | |
10 | ![]() |
Constant | Public | Type reference (TYPE) | OPERATION | '9' | Operation for user defined boolean expressions | 20080311 | |
11 | ![]() |
Constant | Public | Type reference (TYPE) | FDT_BOOLEAN_TOKEN | 'AND' | Token AND | 20080309 | |
12 | ![]() |
Constant | Public | Type reference (TYPE) | FDT_BOOLEAN_TOKEN | 'NOT' | Token NOT | 20080309 | |
13 | ![]() |
Constant | Public | Type reference (TYPE) | FDT_BOOLEAN_TOKEN | 'OR' | Token OR | 20080309 | |
14 | ![]() |
Constant | Public | Type reference (TYPE) | FDT_BOOLEAN_TOKEN | ')' | Token Closing Parenthesis | 20080309 | |
15 | ![]() |
Constant | Public | Type reference (TYPE) | FDT_BOOLEAN_TOKEN | '(' | Token Opening Parenthesis | 20080309 | |
16 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
17 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
18 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
19 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20051103 | ||||
20 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
21 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
22 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
23 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 | ||||
24 | ![]() |
Instance attribute | Public | Attribute reference (LIKE) | 20071228 |
Methods
# | Method | Level | Visibility | Method type | Description | Created on |
---|---|---|---|---|---|---|
1 | ![]() |
Instance method | Public | Method | Get the operands for the operation (except operation FREE) | 20051031 |
2 | ![]() |
Instance method | Public | Method | Get the operation | 20051031 |
3 | ![]() |
Instance method | Public | Method | Get user defined boolean string | 20080311 |
4 | ![]() |
Instance method | Public | Method | Set the operands for the operation (except operation FREE) | 20051031 |
5 | ![]() |
Instance method | Public | Method | Set the operation | 20051031 |
6 | ![]() |
Instance method | Public | Method | Set user defined boolean string | 20080311 |
7 | ![]() |
Instance method | Public | Method | Set user defined template, e.g. <1> or <2> | 20131106 |
Events
Class IF_FDT_BOOLEAN has no event.
Types
# | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
---|---|---|---|---|---|---|---|
1 | OPERATION | Public | Type reference (TYPE) | FDT_BOOLEAN_OPERATION | Boolean Operation | 20051031 | |
2 | S_ANDOR_OPERAND | Public | See coding | Operand for ALL AND/OR Operations | 20080308 | BEGIN OF s_andor_operand,
position TYPE fdt_expr_1303-pos,
id TYPE if_fdt_types=>id,
s_range TYPE s_param_range,
invert TYPE abap_bool,
END OF s_andor_operand
|
|
3 | S_PARAM_RANGE | Public | See coding | Parameter with Range Table | 20090209 | BEGIN OF s_param_range,
parameter_id TYPE if_fdt_types=>id,
ts_range TYPE if_fdt_range=>ts_range,
END OF s_param_range
|
|
4 | S_USER_DEFINED_TOKEN | Public | See coding | Token of a user defined boolean string | 20090209 | BEGIN OF s_user_defined_token,
token TYPE fdt_boolean_token,
operand_id TYPE if_fdt_types=>id,
s_operand_range TYPE s_param_range,
END OF s_user_defined_token
|
|
5 | TS_ANDOR_OPERAND | Public | See coding | Operands for ALL AND/OR Operations | 20080308 | ts_andor_operand TYPE SORTED TABLE OF s_andor_operand
WITH UNIQUE KEY position
|
|
6 | T_USER_DEFINED_TOKEN | Public | See coding | Tokens of a user defined boolean string | 20090209 | t_user_defined_token TYPE STANDARD TABLE OF s_user_defined_token
|
|
7 | USER_DEFINED_BOOLEAN | Public | Type reference (TYPE) | STRING | Free Boolean String (Operation user defined) | 20080311 | |
Method Signatures
Method GET_OPERANDS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
ES_FIRST_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for first parameter (exclusiv to first ID) | 20090209 | ||
2 | ![]() |
ES_SECOND_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for second parameter (exclusiv to second ID) | 20090209 | ||
3 | ![]() |
ES_THIRD_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for third parameter (exclusiv to third ID) | 20090209 | ||
4 | ![]() |
ETS_ANDOR_OPERAND | Call by reference | Type reference (TYPE) | TS_ANDOR_OPERAND | Operands for ALL AND/OR Operations | 20080308 | ||
5 | ![]() |
EV_FIRST_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the first operand | 20051116 | ||
6 | ![]() |
EV_FIRST_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of first parameter | 20051031 | ||
7 | ![]() |
EV_SECOND_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the second operand | 20051116 | ||
8 | ![]() |
EV_SECOND_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of second parameter | 20051031 | ||
9 | ![]() |
EV_THIRD_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the third operand | 20051116 | ||
10 | ![]() |
EV_THIRD_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of third parameter | 20051031 | ||
11 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20051031 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051031 |
Method GET_OPERATION Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
EV_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert operation result | 20051116 | ||
2 | ![]() |
EV_OPERATION | Call by reference | Type reference (TYPE) | OPERATION | Boolean Operation | 20051116 | ||
3 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20051031 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051031 |
Method GET_USER_DEFINED_BOOLEAN Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
ET_USER_DEFINED_TOKEN | Call by reference | Type reference (TYPE) | T_USER_DEFINED_TOKEN | Tokens of a user defined boolean string | 20090209 | ||
2 | ![]() |
EV_TOKEN_TABLE_ONLY | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: simplified ranges used, only token table supporte | 20090209 | ||
3 | ![]() |
EV_USER_DEFINED_BOOLEAN | Call by reference | Type reference (TYPE) | USER_DEFINED_BOOLEAN | 20080311 | |||
4 | ![]() |
IV_TIMESTAMP | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>TIMESTAMP | Time Stamp (active version) | 20080311 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20080311 |
Method SET_OPERANDS Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IS_FIRST_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for first parameter (exclusiv to first ID) | 20090209 | ||
2 | ![]() |
IS_SECOND_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for second parameter (exclusiv to second ID) | 20090209 | ||
3 | ![]() |
IS_THIRD_OPERAND_RANGE | Call by reference | Type reference (TYPE) | S_PARAM_RANGE | Range for third parameter (exclusiv to third ID) | 20090209 | ||
4 | ![]() |
ITS_ANDOR_OPERAND | Call by reference | Type reference (TYPE) | TS_ANDOR_OPERAND | Operands for ALL AND/OR Operations | 20080308 | ||
5 | ![]() |
IV_FIRST_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the first operand | 20051116 | ||
6 | ![]() |
IV_FIRST_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of first parameter | 20051031 | ||
7 | ![]() |
IV_SECOND_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the second operand | 20051116 | ||
8 | ![]() |
IV_SECOND_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of second parameter | 20051031 | ||
9 | ![]() |
IV_THIRD_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: invert the third operand | 20051116 | ||
10 | ![]() |
IV_THIRD_OPERAND_ID | Call by reference | Type reference (TYPE) | IF_FDT_TYPES=>ID | ID of third parameter | 20051031 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051209 |
Method SET_OPERATION Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
IV_INVERT | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | ABAP_TRUE: invert operation result | 20051116 | |
2 | ![]() |
IV_OPERATION | Call by reference | Type reference (TYPE) | OPERATION | Boolean Operation | 20051031 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20051209 |
Method SET_USER_DEFINED_BOOLEAN Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
EV_SYNTAX_ERROR | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: boolean string has syntax errors | 20080325 | ||
2 | ![]() |
IT_USER_DEFINED_TOKEN | Call by reference | Type reference (TYPE) | T_USER_DEFINED_TOKEN | Tokens of a user defined boolean string | 20090209 | ||
3 | ![]() |
IV_USER_DEFINED_BOOLEAN | Call by reference | Type reference (TYPE) | USER_DEFINED_BOOLEAN | User defined boolean string | 20080311 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20080311 |
Method SET_USER_DEFINED_TEMPLATE Signature
# | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
---|---|---|---|---|---|---|---|---|---|
1 | ![]() |
EV_SYNTAX_ERROR | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE: boolean string has syntax errors | 20131106 | ||
2 | ![]() |
IT_USER_DEFINED_TEMPLATE | Call by reference | Type reference (TYPE) | T_USER_DEFINED_TOKEN | User defined template as token table | 20131106 | ||
3 | ![]() |
IV_USER_DEFINED_TEMPLATE | Call by reference | Type reference (TYPE) | USER_DEFINED_BOOLEAN | User defined template as string | 20131106 |
# | Exception | Resumable | Description | Created on |
---|---|---|---|---|
1 | ![]() |
FDT: Invalid Input | 20131106 |
History
Last changed by/on | SAP | 20141121 |
SAP Release Created in |