‎2008 Apr 25 9:44 AM
‎2008 Apr 25 9:49 AM
Hi,
you can switch off the automatic client handling in Open SQL statements using a special addition. In the SELECT statement, the addition comes after the options in the FROM clause:
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.
reference:
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/content.htm
Reward points if helpful.
Regards,
Ramya
‎2008 Apr 25 9:53 AM
All the database tables are client dependent...so whenever you write select statement no need of client handling in your select statement....because select statement should take care of auto matic client handling.
If you want to swith off automatic client handling and want to specify explicitly..then write CLIENT SPECIFIED 'clnt' in your select statement after data base table name.
Reward if useful.
Dara.