Get Example source ABAP code based on a different SAP table
ABAP_BUFFER - Full Buffering When a row is read, all rows in the table or view are loaded to the table buffer>. The buffered table or view is either entirely in the buffer or not at all. In the buffer, the buffered data records are sorted by the key of the table or view. Optimized access requires that the left-aligned part of the primary key or of the fields of a secondary index be as large as possible. If not, the buffer is scanned linearly. If full buffering is switched on in a client-dependent table or view, generic buffering using the client column as a generic key is performed internally.
Latest notes:
In a fully buffered table or view, access to nonexistent data is very fast (see Buffer Management>).
Full buffering should be used for small amounts of data, such as customizing tables. For larger amounts of data, full buffering is worthwhile only if large quantities of data are read frequently. Writes on fully buffered tables should be performed only rarely. NON_V5_HINTS ABAP_HINT_END
ABAP_EXAMPLE_VX5 The table T005>> is fully buffered since it is small and accessed often by reads. ABAP_EXAMPLE_END