Hi Daniel,
Suppose your internal table is lt_dso and work area as wa_dso.
If you want to populate system date to your date field of internal table refer the code below.
Loop at lt_dso into wa_dso.
wa_dso-date = sy-datum.
modify lt_dso from wa_dso.
endloop.