Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Using Transaction ZX02

Former Member
0 Likes
689

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

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
572
select * from mard 
            where ( labst > 0 or speme > 0 )
              and ...

A.

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

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
573
select * from mard 
            where ( labst > 0 or speme > 0 )
              and ...

A.

Read only

former_member404244
Active Contributor
0 Likes
572

Hi

select * from mard

where ( labst > 0 or speme > 0 ).

Regards,

nagaraj

Read only

Former Member
0 Likes
572

select * from mard

into table it_mard

where labst > 0 or

speme > 0.