<?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 Client specific in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056224#M723872</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello.&lt;/P&gt;&lt;P&gt;can any one tell me what is the use of 'CLIENT SPECIFIC ' in select query. and when to make use of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Nov 2007 07:04:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-19T07:04:13Z</dc:date>
    <item>
      <title>Client specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056224#M723872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello.&lt;/P&gt;&lt;P&gt;can any one tell me what is the use of 'CLIENT SPECIFIC ' in select query. and when to make use of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056224#M723872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Client specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056225#M723873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to access data from specific client. ( MANDT field in table)&lt;/P&gt;&lt;P&gt;by default ABAP will access data client specific if u don specify.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056225#M723873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Client specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056226#M723874</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;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/3d/ad5b264ebc11d182bf0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/3d/ad5b264ebc11d182bf0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/1b/9dc2d6e59911d184810000e8a57770/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/1b/9dc2d6e59911d184810000e8a57770/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056226#M723874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Client specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056227#M723875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shalu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider the case, you have on SAP System called SAP-HR6, in this system you have 3 clients, say 100, 200, 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example in HR module the transparent tables like PA0000, PA0001.....etc  are client dependent because they contain field called MANDT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you are writing any select query and you want that this query should fetch data only from client 300, then in where condition you can specify MANDT = 300,&lt;/P&gt;&lt;P&gt;But doing so is not permissible because by doing this your program will become client specific, if you want to write client specific program that cannot be used in other clients, in that case you can use MANDT in where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE: &lt;/P&gt;&lt;P&gt;Note : objects in SE38 are always cross client &lt;/P&gt;&lt;P&gt;In Client 300 , you are writing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Report ZXY&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Select * from PA0000&lt;/P&gt;&lt;P&gt;into itab&lt;/P&gt;&lt;P&gt;where MANDT = 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Client 200, if u run the report ZXY,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will show no data found, because in this client the MANDT value is 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are clear with this, do revert back for further doubts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Kindly Reward If Useful&lt;/P&gt;&lt;P&gt;Rohit G &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056227#M723875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Client specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056228#M723876</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;1) In table if the first field is CLNT then we call it as client dependent otherwise we call it as client independent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Client dependent or independent transfer requirements include client specific or cross client objects in the change requests. Workbench objects like SAPscripts are client specific, some entries in customizing are client independent. If you display the object list for one change request, and then for each object the object attributes, you will find the flag client specific. If one object in the task list has this flag on, then that transport will be client dependent. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;Why Sap script is client dependent and smartform is client independent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B'coz if we develop SAP Script in one client say for example in 100, &amp;amp; if we want to access it in other ciient say 110 , it won't be available . This is CLIENT DEPENDANT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of smartforms, if we develop it in 100 client &amp;amp; if I want 2 access the same smartform in 110 , it wil be available. This is CLIENT INDEPENDANT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report programs are CLIENT INDEPENDANT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/client-specific/m-p/3056228#M723876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:53:17Z</dc:date>
    </item>
  </channel>
</rss>

