‎2008 Mar 28 12:55 AM
hi all,
In select query in where condition if we mention client specified
what is it mean
‎2008 Mar 28 1:56 AM
Hi,
If we specify the client specified then we need to mention MANDT also as one of the where clause .
"If you use this addition, you can then address the client fields in the individual clauses of the SELECT statement."
Thanks,
Greetson
‎2008 Mar 28 2:03 AM
Hi,
in one server itself many clients are maintained...
you will logon by entering your client code....
its picks the value from your client table
Regards,
V.Balaji
Reward if Usefull...
‎2008 Mar 28 2:41 AM
Hi,
SELECT... FROM <tables> CLIENT SPECIFIED. ..
If you use this addition, you can then address the client fields in the individual clauses of the SELECT statement.
You know that data in tables are client dependent.So if you want to see all clents data for given where condition in select statement
you have use CLIENT SPECIFIED addition.
‎2008 Mar 28 4:17 AM
hi,
Suppose u r login with client 800, and u wnat to select data from client 810.if the table is client independent then only we can select data from other clients.
then in SELECT query u have to specify mandt field with where condition.
*select * from <dtab> into <itab> where MANDT = '800'.*
thanks,
raji
reward if helpful