The new syntax of SAP ABAP uses SELECT OFFSET in Open SQL to realize pagination query

The new syntax of SAP ABAP uses SELECT OFFSET in Open SQL to realize pagination query

Introduction: Starting from ABAP 751, Open SQL introduced the keyword OFFSET to specify the starting position of SELECT (OFFSET / offset). Before 751, we usually use OPEN CURSOR and FETCH NEXT CURSOR to achieve similar functions. This article summarizes some usage problems of the new OFFSET syntax, and uses the DEMO program to implement pagination queries using SELECT OFFSET in Open SQL.

keywords:SAP ABAP 新语法 Open SQL OFFSET 偏移量 分页查询

Guess you like

Origin blog.csdn.net/libin961797440/article/details/131963354