SAP OS QUERY FILTER COND
Get Example source ABAP code based on a different SAP table
ABAP_OS - Query Conditions
A query condition is a logical expression that compares the attributes of a persistent class with free parameters or values. The syntax of a query condition is based on the syntax of the AB_SQL
ITOC
When a query is executed using a class agent, the query is bound exactly to its persistent class. The attributes specified in a query condition must exist in the persistent class as public persistent attributes. If not, an exception is raised. On the other hand, a query that has been created can certainly be executed consecutively by class agents of different persistent classes, as long as the specified attributes exist. When a query is executed, a
The elementary comparison operators below are supported in a query condition. An attribute,
The names of parameters can be defined freely by specifying a parameter list. The parameter list is a list of parameter names that can be used in the query condition. The position of the parameter in the parameter list defines the index of the parameter in the parameter table. If no parameter list is specified, a predefined parameter list with the three parameter names
Literal values are generally enclosed by quotation marks. The semantics of the comparison operators are defined by the corresponding AB-SQL language element into which the logical expression is converted.
Latest notes:
The query condition and its parameter list are analyzed when a query is executed and transformed into an internal representation. To bypass parsing each time the query is executed, the methods of the interface
ABAP_HINT_END
ABAP_HINTS_SEC