2008 Jan 14 10:13 AM
I want to populate one field of the internal table with the todays date and the rest of the fields with some referred entries.
How to do it?
2008 Jan 14 10:15 AM
2008 Jan 14 10:15 AM
2008 Jan 14 10:17 AM
Hi Santo,
You can do it like this:
IT_ITAB-date = SY-DATUM.
IT_ITAB-<other Field names> = <table_name>-<field_name>.
Regards
Kaushik
2008 Jan 14 10:18 AM
Use move-corresponding command for filling the rest of fields.
For todays date field
wa_output-fields1 = sy-datum.
Modify it_output from wa_output
where mandt = sy-mandt
transporting field1.
2008 Jan 14 10:20 AM
2008 Jan 14 10:20 AM