我有一个带有以下示例代码的 ABAP 程序,它应该根据日期列从 SAP 表中选择数据。
INITIALIZATION.
select-OPTIONS: so_date FOR sy-datum.
START-OF-SELECTION.
so_date-sign = 'I'.
so_date-option = 'BT'.
so_date-low = sy-datum.
so_date-high = '99991231'.
APPEND so_date.
我选择的 stmt 是:
select c1,c2,c3
from <sap_table>
where <date_column> in so_date.
我想知道设置 so_date-high = '99991231' 的目的以及它的行为方式。