<?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: syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277429#M783672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;........CLIENT SPECIFIED  addition in SELECT statment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Automatic client handling is suspended. This enables&lt;/P&gt;&lt;P&gt;you, for client-dependent tables, to search for data in all clients. The client field is treated as a standard table field for which you can specify suitable conditions in the WHERE clause . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are only reading from a single table, the CLIENT SPECIFIED addition must come directly after the name of the table; in the case of JOINs, the addition must come after the ON condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Output of a list of all materials in client 3: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_mara TYPE mara. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SELECT * FROM mara CLIENT SPECIFIED INTO WA_mara*&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;WHERE MANDT = '003'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;  WRITE: / WA_mara-matnr, WA_mara-mtart. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jan 2008 05:14:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-21T05:14:48Z</dc:date>
    <item>
      <title>syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277428#M783671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;what is the syntax to read the data from datadase table of another client?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 04:44:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277428#M783671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T04:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277429#M783672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;........CLIENT SPECIFIED  addition in SELECT statment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Automatic client handling is suspended. This enables&lt;/P&gt;&lt;P&gt;you, for client-dependent tables, to search for data in all clients. The client field is treated as a standard table field for which you can specify suitable conditions in the WHERE clause . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are only reading from a single table, the CLIENT SPECIFIED addition must come directly after the name of the table; in the case of JOINs, the addition must come after the ON condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Output of a list of all materials in client 3: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_mara TYPE mara. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SELECT * FROM mara CLIENT SPECIFIED INTO WA_mara*&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;WHERE MANDT = '003'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;  WRITE: / WA_mara-matnr, WA_mara-mtart. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 05:14:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277429#M783672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T05:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277430#M783673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Verma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want particular client..&lt;/P&gt;&lt;P&gt;SELECT  *&lt;/P&gt;&lt;P&gt;  INTO  wa&lt;/P&gt;&lt;P&gt;  FROM  dbasetable  CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;  WHERE mandt = '000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you  want all clients&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  *&lt;/P&gt;&lt;P&gt;  INTO  wa&lt;/P&gt;&lt;P&gt;  FROM  dbasetable  CLIENT SPECIFIED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 05:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax/m-p/3277430#M783673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T05:53:02Z</dc:date>
    </item>
  </channel>
</rss>

