<?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: Read Data from one client to another client/ in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263493#M1017355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Use &lt;STRONG&gt;CLIENT SPECIFIED WHERE MANDT = 'XXX'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this client specified is used for accesing records of a table from other client to existing client. as u give mandt as a first field of a tbale then table becomes client specific so which others users of other clients can't access that table. to access that kind of tables we use CLIENT SPECIFIED st in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-  &lt;/P&gt;&lt;P&gt;       SELECT  *  INTO  wa  FROM  (name) &lt;/P&gt;&lt;P&gt;CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;  WHERE mandt = '000'.&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the SAP help documentation here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Aug 2008 04:19:01 GMT</pubDate>
    <dc:creator>former_member585060</dc:creator>
    <dc:date>2008-08-09T04:19:01Z</dc:date>
    <item>
      <title>Read Data from one client to another client/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263491#M1017353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to read a data from one client to another client both in same server ? &lt;/P&gt;&lt;P&gt;Let's say the program is in client A and will read the table z.... in client B. ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kl. Guide me ..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Murugesh R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 03:26:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263491#M1017353</guid>
      <dc:creator>murugeshkumar_ramasamy</dc:creator>
      <dc:date>2008-08-09T03:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Read Data from one client to another client/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263492#M1017354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assume that you are in client 100, and you want client 800 data then...&lt;/P&gt;&lt;P&gt;you have to use the addition CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest_clien.

DATA: sflight TYPE sflight.

SELECT SINGLE *
 FROM sflight
 CLIENT SPECIFIED
INTO sflight
WHERE mandt = '800' AND
      carrid = 'AA'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;      .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 04:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263492#M1017354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T04:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Read Data from one client to another client/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263493#M1017355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Use &lt;STRONG&gt;CLIENT SPECIFIED WHERE MANDT = 'XXX'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this client specified is used for accesing records of a table from other client to existing client. as u give mandt as a first field of a tbale then table becomes client specific so which others users of other clients can't access that table. to access that kind of tables we use CLIENT SPECIFIED st in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-  &lt;/P&gt;&lt;P&gt;       SELECT  *  INTO  wa  FROM  (name) &lt;/P&gt;&lt;P&gt;CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;  WHERE mandt = '000'.&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the SAP help documentation here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 04:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263493#M1017355</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-08-09T04:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Read Data from one client to another client/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263494#M1017356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gurus.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u very Much... I rewarded both of yuu..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Murugesh R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 09:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-one-client-to-another-client/m-p/4263494#M1017356</guid>
      <dc:creator>murugeshkumar_ramasamy</dc:creator>
      <dc:date>2008-08-09T09:06:19Z</dc:date>
    </item>
  </channel>
</rss>

