Application Development 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: 

two select options

Former Member
0 Kudos
103

hi to all,

can any one tell me hwo can i code for two select statements in one report.

thanks in advance.

raju

this post is closed

Message was edited by: mpr raju

1 ACCEPTED SOLUTION

Former Member
0 Kudos
82

Your question is not clear . You can write as many select statements in your report ,

3 REPLIES 3

Former Member
0 Kudos
83

Your question is not clear . You can write as many select statements in your report ,

Former Member
0 Kudos
82

Can you please tell the exact requirement ?? Your subject is on select-options

Message was edited by: Aadarsh K

Vinod_Chandran
Active Contributor
0 Kudos
82

Hi Raju,

You can write as many SELECT statement in your report. If you are talking about JOIN here is a sample code.

select mardmatnr mardwerks

sum( mardlabst ) sum( mardinsme ) sum( mard~speme )

sum( mardretme ) sum( mslblblab )

into table wt_mard

from mard as mard

left outer join mslb as mslb on mardmatnr = mslbmatnr

and mardwerks = mslbwerks

where mard~matnr in s_matnr

and mard~werks in s_werks

group by mardmatnr mardwerks.

Thanks

Vinod