‎2007 Jun 18 3:07 PM
hi experts,
i have the date field in the report output of type DATUM.
but i have to change that field into DD/MM/YYYY format.
i want to change that field format only after selection query.
how to go about this.
thanks and regards
Shyam.
‎2007 Jun 18 3:10 PM
HEllo,
Do like this.
data: lv_datum(10).
write sy-datum to lv_datum.
write lv_datum.Vasanth
‎2007 Jun 18 3:10 PM
Hi,
Parameters:DATE1 type Sy-datum.
data: DATE2(10) type c.
WRITE: DATE1 to DATE2. " Here the DATE2 will have the User format.
" Write this line after your Select statmentRegards
Sudheer
‎2007 Jun 18 3:15 PM
Thank you sudeer,
i have send the said format of date to local file and unix.
‎2007 Jun 18 3:18 PM
Hi,
Could you assign the Points and close the thread
Regards
Sudheer