<?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: CUSTOMER DATA WITH DIFFERENT SPRAS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082111#M98120</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;The problem is the language of customer (KNA1-SPRAS), that language is used by the system when it has to decide which language to use for the print.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: &lt;/P&gt;&lt;P&gt;you have to create a sale order print and you have to print different versions for different languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you'll create one only sapscript, but different versions for every language you have to use (Spanish version, English version...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the system often can use only two or three languages, becouse nobody load all lanagues of the world, but it often loads the main languages for the business.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I work in Italy, so we use to use Italian (for the Italian customer) and English (for the customer of other countries. I sometimes worked for companies have big business in latin countries, so those companies use Spanish too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when it insert a customer of other country, the user have to decide which language he has to assign: if it has a customer of Marocco, it's probably useless to assign Arabic, becouse the system doesn't manage this language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think your system manages the Spanish and not the Arabic, so the Spanish is used for Arabic Customer too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use only one language, the language of Customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: max bianchi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Oct 2005 17:02:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-23T17:02:58Z</dc:date>
    <item>
      <title>CUSTOMER DATA WITH DIFFERENT SPRAS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082108#M98117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;i´ve got the following SELECT statement:&lt;/P&gt;&lt;P&gt;      SELECT SINGLE a&lt;SUB&gt;name1 a&lt;/SUB&gt;ort01 a&lt;SUB&gt;stras a&lt;/SUB&gt;pstlz&lt;/P&gt;&lt;P&gt;                    a&lt;SUB&gt;telf1 a&lt;/SUB&gt;stcd1 c~bezei&lt;/P&gt;&lt;P&gt;      INTO (wa_devolucion-name1, wa_devolucion-ort01,&lt;/P&gt;&lt;P&gt;            wa_devolucion-stras, wa_devolucion-pstlz,&lt;/P&gt;&lt;P&gt;            wa_devolucion-telf1, wa_devolucion-stcd1,&lt;/P&gt;&lt;P&gt;            wa_devolucion-provi)&lt;/P&gt;&lt;P&gt;      FROM kna1 AS a&lt;/P&gt;&lt;P&gt;      INNER JOIN t005 AS b&lt;/P&gt;&lt;P&gt;      ON b&lt;SUB&gt;land1 = a&lt;/SUB&gt;land1&lt;/P&gt;&lt;P&gt;      AND b&lt;SUB&gt;spras = a&lt;/SUB&gt;spras&lt;/P&gt;&lt;P&gt;      INNER JOIN t005u AS c&lt;/P&gt;&lt;P&gt;      ON c&lt;SUB&gt;spras = a&lt;/SUB&gt;spras&lt;/P&gt;&lt;P&gt;      AND c&lt;SUB&gt;land1 = a&lt;/SUB&gt;land1&lt;/P&gt;&lt;P&gt;      AND c&lt;SUB&gt;bland = a&lt;/SUB&gt;regio&lt;/P&gt;&lt;P&gt;      WHERE a~kunnr = v_kunnr&lt;/P&gt;&lt;P&gt;      AND c~spras = v_spras&lt;/P&gt;&lt;P&gt;      AND c~land1 = v_land1&lt;/P&gt;&lt;P&gt;      AND c~bland = v_regio.&lt;/P&gt;&lt;P&gt;The problem is that for certain customer the value in t005-spras is different from the value in kna1 and t005u.&lt;/P&gt;&lt;P&gt;How can i solve this problem?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Oct 2005 15:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082108#M98117</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2005-10-23T15:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOMER DATA WITH DIFFERENT SPRAS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082109#M98118</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;I think you can't solve the problem using your join: &lt;/P&gt;&lt;P&gt;- T005U is text table of T005S, so you can try in this table the definition of the region (field BLAND) for several languages (field SPRAS);&lt;/P&gt;&lt;P&gt;- T005 is the table of the country and here the field SPRAS is the language is spoken in the country;&lt;/P&gt;&lt;P&gt;- KNA1 is the table of customer and here the field SPRAS is the language should be use for the messages (print) for the cusatomer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the field SPRAS (language) has a different mean for each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know what you want to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Oct 2005 15:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082109#M98118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-23T15:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOMER DATA WITH DIFFERENT SPRAS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082110#M98119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;is it a question of parametrization?&lt;/P&gt;&lt;P&gt;do i have to do something with this customer in order to get the data i need in spanish?&lt;/P&gt;&lt;P&gt;this customer is from Morocco and has the following values in tables:&lt;/P&gt;&lt;P&gt;kna1-spras = 'ES' spanish&lt;/P&gt;&lt;P&gt;t005-spras = 'AR' arabic&lt;/P&gt;&lt;P&gt;t005s-spras = 'S' spanish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Oct 2005 16:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082110#M98119</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2005-10-23T16:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOMER DATA WITH DIFFERENT SPRAS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082111#M98120</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;The problem is the language of customer (KNA1-SPRAS), that language is used by the system when it has to decide which language to use for the print.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: &lt;/P&gt;&lt;P&gt;you have to create a sale order print and you have to print different versions for different languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you'll create one only sapscript, but different versions for every language you have to use (Spanish version, English version...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the system often can use only two or three languages, becouse nobody load all lanagues of the world, but it often loads the main languages for the business.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I work in Italy, so we use to use Italian (for the Italian customer) and English (for the customer of other countries. I sometimes worked for companies have big business in latin countries, so those companies use Spanish too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when it insert a customer of other country, the user have to decide which language he has to assign: if it has a customer of Marocco, it's probably useless to assign Arabic, becouse the system doesn't manage this language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think your system manages the Spanish and not the Arabic, so the Spanish is used for Arabic Customer too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use only one language, the language of Customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: max bianchi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Oct 2005 17:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082111#M98120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-23T17:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOMER DATA WITH DIFFERENT SPRAS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082112#M98121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was working with sapscripts . The business has several centres in all the world and different customer with different languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you print the system use the language of the logon ,but you must force the print with the language of the costumer . The language of the customer isn't in the table KNA1 (only you will find the nationality and a language ,but not the communication language neccesary to communicate with the customer)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 07:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-data-with-different-spras/m-p/1082112#M98121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T07:57:54Z</dc:date>
    </item>
  </channel>
</rss>

