<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CLIENT SPECIFIED in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499998#M1064732</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="12" __jive_macro_name="size"&gt;&lt;SPAN __default_attr="Times New Roman" __jive_macro_name="font"&gt;ANY LAST WISHES....? &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Sep 2008 07:18:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-25T07:18:25Z</dc:date>
    <item>
      <title>CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499996#M1064730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i saw two statements in SAP abap objects performance examples(access through SE38):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM SBOOK CLIENT SPECIFIED INTO SBOOK_WA&lt;/P&gt;&lt;P&gt;WHERE CARRID = 'LH'&lt;/P&gt;&lt;P&gt;AND CONNID = '0400'.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime: 2.689.736 microseconds &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;______________________________________________&lt;/P&gt;&lt;P&gt;SELECT * FROM SBOOK CLIENT SPECIFIED INTO SBOOK_WA&lt;/P&gt;&lt;P&gt;WHERE MANDT IN ( SELECT MANDT FROM T000 )&lt;/P&gt;&lt;P&gt;AND CARRID = 'LH'&lt;/P&gt;&lt;P&gt;AND CONNID = '0400'.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime: 81.329 microseconds &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And usually wo do not have to specify the field "MANDT", and does the field really work like the above way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 06:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499996#M1064730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T06:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499997#M1064731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A single SAP system can manage the application data for several separate areas of a business (for example, branches). Each of these commercially separate areas in the SAP system is called a client, and has a number. When a user logs onto the SAP Web AS ABAP, they specify a client. The first column in the structure of every database table containing application data is the client field (MANDT, from the German word for client). It is also the first field of the table key. Only universal system tables are client-independent, and do not contain a client name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, Open SQL statements use automatic client handling. Statements that access client-dependent application tables only use the data from the current client. You cannot specify a condition for the client field in the WHERE clause of an Open SQL statement. If you do so, the system will either return an error during the syntax check or a runtime error will occur. You cannot overwrite the MANDT field of a database using Open SQL statements. If you specify a different client in a work area, the ABAP runtime environment automatically overwrites it with the current one before processing the Open SQL statement further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should you need to specify the client specifically in an Open SQL statement, use the addition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... CLIENT SPECIFIED ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;directly after the name of the database table. This addition disables the automatic client handling and you can use the field MANDT both in the WHERE clause and in a table work area.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 06:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499997#M1064731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T06:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499998#M1064732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="12" __jive_macro_name="size"&gt;&lt;SPAN __default_attr="Times New Roman" __jive_macro_name="font"&gt;ANY LAST WISHES....? &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 07:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499998#M1064732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T07:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499999#M1064733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Bye!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take care bro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 08:20:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4499999#M1064733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T08:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500000#M1064734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So sad.  He was so young.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 09:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500000#M1064734</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-09-25T09:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500001#M1064735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey you are not counting me.....&lt;/P&gt;&lt;P&gt;I am in Enhancements forum..i missed this...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 10:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500001#M1064735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T10:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500002#M1064736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Come and Join here..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="6248879"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 10:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500002#M1064736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T10:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: CLIENT SPECIFIED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500003#M1064737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Julius may be able to  improve your Performance and Tune your user ID Soon &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 10:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specified/m-p/4500003#M1064737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T10:14:59Z</dc:date>
    </item>
  </channel>
</rss>

