Hi All,
Below is my data type for date field.
data : begin of t_date occurs 0 ,
p_date(10) type c ,
belnr like bkpf-belnr ,
end of t_date .
data : w_budat(10) type c .
values in final internal table t_date in debugging:
P_Date
12/06/2008
12/06/2008
24/06/2008
24/06/2008
I am downloading the data to excel file using ws_download. Below is the date in excel file.
Posting DT
12/6/2008
12/6/2008
24/06/2008
24/06/2008
why the first 2 records are having different format in excel file. Please help me.
Thanks,
HT