2007 Feb 25 10:53 AM
Hi All,
How to use ARTIHMATIC EXPRESSION coulmn from transaction ZX02. Actually
I would like to use OR condition i.e I would like to extract all records from MARD table where MARD-LABST > 0 OR MARD-SPEME > 0.
Thanks
2007 Feb 27 10:06 AM
2007 Feb 27 10:06 AM
2007 Feb 27 10:11 AM
Hi
select * from mard
where ( labst > 0 or speme > 0 ).
Regards,
nagaraj
2007 Feb 27 10:13 AM
select * from mard
into table it_mard
where labst > 0 or
speme > 0.