When accessing database tables using Open SQL, SAP buffering is effective as standard if it is activated for the corresponding database table. It can be explicitly deactivated using the addition BYPASSING BUFFER of the statement SELECT.
In addition to the explicit specification of BYPASSING BUFFER, SAP buffering can also be bypassed implicitly by some variants of the Open SQL statements, as the corresponding operation can only be executed in the database and not in the SAP buffer.
The following Open SQL statements implicitly bypass the SAP buffer and access the database tables directly:
Bypassing the SAP buffer with the above additions is a means to increase the performance when accessing buffered database tables. To explicitly bypass the SAP buffer in the SELECT statement, always use the addition BYPASSING BUFFER instead of the implicit behavior of the additions stated above.