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: 

select mandt

Former Member
0 Kudos

i am working on client 100 and i am using select query to fetch data from client 200 how can i do it using select statement........

regards

martin

3 REPLIES 3

Former Member
0 Kudos

Try

SELECT * from xxxx CLIENT SPECIFIED 
 where mandt = 200 xxxxx

So long...

Former Member
0 Kudos

Hello

Try like the below.

SELECT * FROM SCUSTOM CLIENT SPECIFIED INTO WA_SCUSTOM

WHERE MANDT = '003'.

WRITE: / WA_SCUSTOM-ID, WA_SCUSTOM-NAME.

ENDSELECT.

If useful reward.

Vasanth

Former Member
0 Kudos

By default, only data from the current client is selected (without you having to specify the client field specifically in the WHERE clause). If you want to select data from several clients, you must use the ... CLIENT SPECIFIED addition in the FROM clause.

and u can use the SELECT statement as told by others