Home  >  Article  >  Database  >  Show date as default value in table

Show date as default value in table

WBOY
WBOYforward
2023-08-24 09:53:03724browse

Show date as default value in table

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.
before START-OF_SELECTION

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete