2005 Sep 19 8:54 AM
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
2005 Sep 19 9:02 AM
Your question is not clear . You can write as many select statements in your report ,
2005 Sep 19 9:02 AM
Your question is not clear . You can write as many select statements in your report ,
2005 Sep 19 9:03 AM
Can you please tell the exact requirement ?? Your subject is on select-options
Message was edited by: Aadarsh K
2005 Sep 19 9:03 AM
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