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

client dependent table

Former Member
0 Likes
420

incase if u r table is client dependent how the end user will access the data?

3 REPLIES 3
Read only

Former Member
0 Likes
404

hI,

USE CLIENT SPECIFIC STATEMENT ADDITIONALLY IN SELECT STATEMENT .

it shows all clients data to end user.

Read only

Former Member
0 Likes
404

Hi

make the select statements client specific by specifying the client number..

with regards,

Hema Sundara.

Read only

Former Member
0 Likes
404

Hi,

use this statement to select data form client specific table:-

select * from <DBtable> into table <internal table> CLIENT SPECIFIED where MANDT = '0100' and field1 = .....

Here it select the data belongs to 0100 clients.