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 specified

Former Member
0 Likes
464

client specified use in database tables

2 REPLIES 2
Read only

Former Member
0 Likes
436

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

Read only

Former Member
0 Likes
436

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.