Please try the following code. Note that you need to set the value
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.
You can also try this simple option -
select-OPTIONS: so_date FOR sy-datlo default SY-DATUM.
The above is the detailed content of Show date as default value in table. For more information, please follow other related articles on the PHP Chinese website!