‎2006 Jul 04 3:55 PM
Hi,
I need the information based on date when I write the select statement like begda = '01.04.2006'. No data is displaying.
Please let me know how to get the information.
Thanks,
Pavan.
‎2006 Jul 04 3:57 PM
Hi,
Check the format in which the date is stored.
If it is 20060401, then use select query
select * from
ztab
where begda = '20060401'.
Best regards,
Prashant
‎2006 Jul 04 3:57 PM
Dates are stored in the database with format YYYYMMDD. Change the format of the variable you are evaluating in the where clause.
-Kiran
‎2006 Jul 04 3:58 PM
Hello Pavan,
The begda is only 8 characters date fields.
SO in the select statement u should give the date in the sy-datum format ie)20060401.
Hope u got the answer.
Reward the point and close the thread.
Regards,
Vasanth
‎2006 Jul 04 3:59 PM