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

how do i acess client dependent data

Former Member
0 Likes
639

how do i acess client dependent data

5 REPLIES 5
Read only

Former Member
0 Likes
618

Hi,

You need to use MANDT in the select statment ......

Regards

Sudheer

Read only

0 Likes
618

Correction...

Use MANDT in select statement, but this is possible only if you also use CLIENT SPECIFIED in the select statement, without which MANDT cannot be used...

One more thing, MANDT may not necessarily be the name of the client field, find out from the table definition before using it... It's the first field in the table, with type CLNT...

Hope this helps

Regards,

Dushyant Shetty

Read only

Former Member
0 Likes
618

hi


SELECT  *
  INTO  table itab
  FROM  (name) CLIENT SPECIFIED
  WHERE mandt = '000'.

Thx

pavan

Read only

former_member196299
Active Contributor
0 Likes
618

hi ,

You need to write select statement using MANDT in where condition ..

ex: select * from < Table > client specified

into itab

where ........... ( condition 1 )

mandt = 100.

this will definately work ...

Reward if helpful !

Regards,

Ranjita

Read only

Former Member
0 Likes
618

thanku for ur answer