2008 Jul 17 1:33 PM
Hello!
I'm a beginner.
I have a table and the table has date column. I need to select all information where date = 0.
How can I write it in abap?
*select * from erch into ls_storno_erch*
where stornodat = 0.????
Thanks!
2008 Jul 17 1:36 PM
AA,
select from erch into ls_storno_erch
where stornodat = '00000000'Amit.
Hello!
I'm a beginner.
I have a table and the table has date column. I need to select all information where date = 0.
How can I write it in abap?
*select * from erch into ls_storno_erch*
where stornodat = 0.????
Thanks!
2008 Jul 17 1:36 PM
AA,
select from erch into ls_storno_erch
where stornodat = '00000000'Amit.
2008 Jul 17 1:37 PM
Hi Andrei Algaier ,
Change your select statment like this,,,
where stornodat eq initial.
it will solve ur probelm,,,,
Hope this helps you
Regards,
T.Durai murugan.
2008 Jul 17 1:40 PM
Hi,
Use the below select statement
select * from erch into ls_storno_erch*
where stornodat is null.