在表格中显示当前的日期作为默认值
请尝试以下代码。注意你需要设定 START-OF_SELECTION 的值
select-OPTIONS: so_date FOR sy-datlo. INITIALIZATION. so_date-sign = 'I'. so_date-option = 'EQ'. so_date-low = sy-datum. CLEAR so_date-high. APPEND so_date.
你也可以尝试这个更简单的方案 −
select-OPTIONS: so_date FOR sy-datlo default SY-DATUM.
广告