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

data to compare from two different clients

Former Member
0 Likes
776

hi

how to display and compare the data from two different clients(i.e. source and target ) with checkboxes in alv grid format.

thanks in advance.

hi

how to display and compare the data from two different clients(i.e. source and target ) with checkboxes in alv grid format.

thanks in advance.

4 REPLIES 4
Read only

Former Member
0 Likes
713

Try transaction SCMP

Read only

former_member585060
Active Contributor
0 Likes
713

Use CLIENT SPECIFIED after FROM clause to fetch data from different client.

SELECT... FROM <tables> CLIENT SPECIFIED. ..

Load data into internal table with MANDT field and display the MANDT and corresponding record

Read only

0 Likes
713

Hi,

When you Use CLIENT SPECIFIED make sure you include the MANDT in the where clause.

example


select * from vbak
client specified
where mandt in so_mandt  " so_mandt is select option for the client )
and " rest of the selection criteria  

Edited by: Advait Gode on Sep 26, 2008 12:08 PM

Read only

Former Member
0 Likes
713

Hi Gajendra,

Have a look at the below class

CL_RSRD_PRODUCER_EXCEL

Cheers,

KD

Edited by: Krutiman Das on Sep 26, 2008 11:04 AM