请尝试以下代码。请注意,您需要在 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.
以上是将日期显示为表中的默认值的详细内容。更多信息请关注PHP中文网其他相关文章!