<?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 text elements in all languages in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278811#M1218447</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it will work. But it's not very nice and fast.&lt;/P&gt;&lt;P&gt;I hope there could be more general solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2009 12:59:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-06T12:59:17Z</dc:date>
    <item>
      <title>Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278807#M1218443</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 have a simple question at first sight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have text element in my report. How can I read it in all existing for it languages?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In READ TEXTPOOL... and FMs that use this command the language should be defined.&lt;/P&gt;&lt;P&gt;But I need a universal solution in case my text elemnt will be translated into another languages later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know the answer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278807#M1218443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T12:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278808#M1218444</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;just give system variable SY-LANGU to the Language parameter of the Function module, it will automatically change the text in the login language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajnesh D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278808#M1218444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T12:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278809#M1218445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Select all languages in ur system into internal table. Check the table T002 for the valid languages in ur system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        SELECT spras INTO TABLE i_t002
               FROM t002.

LOOP AT i_t002 INTO wa.
    READ TEXTPOOL 'PROGRAM NAME' INTO i_texts LANGUAGE wa-spras.
LOOP AT i_texts INTO wa.
"  print the data.
ENDLOOP.

ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Reddy Vemuru on Mar 6, 2009 6:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278809#M1218445</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-03-06T12:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278810#M1218446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Get all languages to a internal table&lt;/P&gt;&lt;P&gt;and loop that internal table and call the FM inside the loop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278810#M1218446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T12:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278811#M1218447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it will work. But it's not very nice and fast.&lt;/P&gt;&lt;P&gt;I hope there could be more general solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:59:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278811#M1218447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T12:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Read text elements in all languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278812#M1218448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If u just want to check in what languages it is maintained then u can make use of table &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REPOTEXT&lt;/STRONG&gt;. Paa the program name to this table. When ever u maintain translation in a language&lt;/P&gt;&lt;P&gt;an entry will be created in this table. So number of entries in this table = number of languages translatiions maintained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But u wont get the actual text from this table. Its in compressed format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 13:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-elements-in-all-languages/m-p/5278812#M1218448</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-03-06T13:19:04Z</dc:date>
    </item>
  </channel>
</rss>

