‎2007 Dec 30 9:29 AM
incase if u r table is client dependent how the end user will access the data?
‎2007 Dec 31 5:20 AM
hI,
USE CLIENT SPECIFIC STATEMENT ADDITIONALLY IN SELECT STATEMENT .
it shows all clients data to end user.
‎2007 Dec 31 5:27 AM
Hi
make the select statements client specific by specifying the client number..
with regards,
Hema Sundara.
‎2007 Dec 31 10:58 AM
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.