/AWS1/CL_FCSFILTER¶
Describes a filter for choosing a subset of objects. Each filter consists of a
condition and a match statement. The condition is either IS or
IS_NOT, which specifies whether to include or exclude
the objects that match the statement, respectively. The match statement consists of a key and a
value.
CONSTRUCTOR¶
IMPORTING¶
Required arguments:¶
iv_key TYPE /AWS1/FCSSTRING /AWS1/FCSSTRING¶
The name of the parameter to filter on.
iv_value TYPE /AWS1/FCSARN /AWS1/FCSARN¶
The value to match.
iv_condition TYPE /AWS1/FCSFILTERCONDITIONSTRING /AWS1/FCSFILTERCONDITIONSTRING¶
The condition to apply. To include the objects that match the statement, specify
IS. To exclude matching objects, specifyIS_NOT.
Queryable Attributes¶
Key¶
The name of the parameter to filter on.
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_KEY() |
Getter for KEY, with configurable default |
ASK_KEY() |
Getter for KEY w/ exceptions if field has no value |
HAS_KEY() |
Determine if KEY has a value |
Value¶
The value to match.
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_VALUE() |
Getter for VALUE, with configurable default |
ASK_VALUE() |
Getter for VALUE w/ exceptions if field has no value |
HAS_VALUE() |
Determine if VALUE has a value |
Condition¶
The condition to apply. To include the objects that match the statement, specify
IS. To exclude matching objects, specifyIS_NOT.
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_CONDITION() |
Getter for CONDITION, with configurable default |
ASK_CONDITION() |
Getter for CONDITION w/ exceptions if field has no value |
HAS_CONDITION() |
Determine if CONDITION has a value |
Public Local Types In This Class¶
Internal table types, representing arrays and maps of this class, are defined as local types:
TT_FILTERS¶
TYPES TT_FILTERS TYPE STANDARD TABLE OF REF TO /AWS1/CL_FCSFILTER WITH DEFAULT KEY
.