<?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 Simple text elements language handling in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303988#M159449</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hi All!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is simple: Is it possible to read text element value in diffrent than logon language during runtime ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm asking about &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;simpler way&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt; than copying all text elements from program textpool with specified language into local textpool and reading it later with key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to change SY-LANGU before reading a text element but it didn't help - values i was receiving were stil in logon language.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 May 2006 10:40:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-25T10:40:00Z</dc:date>
    <item>
      <title>Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303988#M159449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hi All!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is simple: Is it possible to read text element value in diffrent than logon language during runtime ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm asking about &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;simpler way&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt; than copying all text elements from program textpool with specified language into local textpool and reading it later with key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to change SY-LANGU before reading a text element but it didn't help - values i was receiving were stil in logon language.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303988#M159449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303989#M159450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the Function MOdule &amp;lt;b&amp;gt;read_text&amp;lt;/b&amp;gt; by passing whichever language you want to the language key parameter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303989#M159450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303990#M159451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use read_text functuion module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table to store standard texts&lt;/P&gt;&lt;P&gt;DATA: IT_TEXTS like T_LINE occurs o with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;CALL FUNCTION 'READ_TEXT'&amp;lt;/b&amp;gt;     

EXPORTING
*         CLIENT                  = SY-MANDT
          id                      =       "Text ID
          &amp;lt;b&amp;gt;language                =       "Laguage&amp;lt;/b&amp;gt;        
           name                    =       "Text name
          object                  =       "text object
*         ARCHIVE_HANDLE          = 0
*    IMPORTING
*         HEADER                  =
     tables
          lines                   = IT_TEXTS   "Internal table
*    EXCEPTIONS
*         ID                      = 1
*         LANGUAGE                = 2
*         NAME                    = 3
*         NOT_FOUND               = 4
*         OBJECT                  = 5
*         REFERENCE_CHECK         = 6
*         WRONG_ACCESS_TO_ARCHIVE = 7
*         OTHERS                  = 8
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other wise...if its in the script you can change it by using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;/: SET COUNTRY &amp;lt;COUNTRY KEY&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303990#M159451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303991#M159452</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;Is it some kind of "bult-in" function or you're telling me to create my own function module which would return a text element value getting as a parameters report id and destination language? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's about creating a function module - I thought about it earlier but i'm looking for something simpler !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303991#M159452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303992#M159453</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;try this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;READ_FORM_ELEMENTS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303992#M159453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303993#M159454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tomasz,&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       CLIENT                   = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         ID                       = WK_ID&lt;/P&gt;&lt;P&gt;         LANGUAGE                 = 'en'&lt;/P&gt;&lt;P&gt;         NAME                     = WK_NAME&lt;/P&gt;&lt;P&gt;         OBJECT                   = WK_OBJECT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ARCHIVE_HANDLE              = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    LOCAL_CAT                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         HEADER                   = THEAD&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;         LINES                    = ITAB_TXT       EXCEPTIONS&lt;/P&gt;&lt;P&gt;         ID                       = 1&lt;/P&gt;&lt;P&gt;         LANGUAGE                 = 2&lt;/P&gt;&lt;P&gt;         NAME                     = 3&lt;/P&gt;&lt;P&gt;         NOT_FOUND                = 4&lt;/P&gt;&lt;P&gt;         OBJECT                   = 5&lt;/P&gt;&lt;P&gt;         REFERENCE_CHECK          = 6&lt;/P&gt;&lt;P&gt;         WRONG_ACCESS_TO_ARCHIVE  = 7&lt;/P&gt;&lt;P&gt;         OTHERS                   = 8.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOPE THIS HELPS,&lt;/P&gt;&lt;P&gt;PRIYA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:53:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303993#M159454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303994#M159455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tomasz,&lt;/P&gt;&lt;P&gt;   If you are talking about the report text elements that you create, then there is a existing function module:&lt;/P&gt;&lt;P&gt;WB2B_GET_REPORT_TEXTELEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu have to pass the Program ID(Report name) and the language) to get the entries.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303994#M159455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T10:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303995#M159456</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;READ TEXTPOOL abap statement. See online documentation for details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 10:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303995#M159456</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-05-25T10:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303996#M159457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To Clemens Li !!&lt;/P&gt;&lt;P&gt;Man !! Read the question before answering them !!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To helpful people !!&lt;/P&gt;&lt;P&gt;I forgot to add that i'm fresh at ABAP (my second week) and please - be a bit more specific. If Yor're sugest using some function - tell me if it nescessary to add some includes or how to call it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excuse me for being so newbie !! &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303996#M159457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303997#M159458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Tomasz ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want more info on READ_TEXT func module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly&lt;/P&gt;&lt;P&gt;Standard texts are read using the &amp;#145;READ_TEXT&amp;#146; function module which takes a number of Inputs and returns the texts into an internal table. The main inputs for the FM are Text name, Language, Text ID and Text object and can be located using the following procedure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1 : Display the desired text with transaction (i.e. ME23) &lt;/P&gt;&lt;P&gt;Step 2 Show long text for a particular text (i.e. Deliver To) &lt;/P&gt;&lt;P&gt;Step 3 Select &amp;#145;Header&amp;#146; from the Goto menu (Goto-&amp;gt;Header). The following screen should appear displaying info needed to retrieve text using the &amp;#145;READ_TEXT&amp;#146; function module (Text name, Language, Text ID, Text object) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code shows the syntax of the FM 'READ_TEXT'. You pass it the Text Identification Details and it will retrieve the texts into the internal table (IT_TEXTS). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table to store standard texts&lt;/P&gt;&lt;P&gt;DATA: IT_TEXTS like T_LINE occurs o with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CLIENT                  = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          id                      =       "Text ID&lt;/P&gt;&lt;P&gt;          language                =       "Laguage&lt;/P&gt;&lt;P&gt;          name                    =       "Text name&lt;/P&gt;&lt;P&gt;          object                  =       "text object&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_HANDLE          = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        HEADER                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          lines                   = IT_TEXTS   "Internal table&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ID                      = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        LANGUAGE                = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NAME                    = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NOT_FOUND               = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OBJECT                  = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        REFERENCE_CHECK         = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WRONG_ACCESS_TO_ARCHIVE = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS                  = 8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303997#M159458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Simple text elements language handling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303998#M159459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry I did not know you are new to ABAP. After having read the answer with the function module 'READ_TEXT' I knew that this is definitely not useful at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need text element values in other than logon language there is definetly no better was than reading the whole textpool in the language you want because the textes are stored in the database in a way they can not be read separately. At report load time, all text elements are loaded in logon language. Text elements not existing in logon language will be retrieved either from program source language or system-defined fallback language. Make sure your text elements exist in the languages you need (Abap-editor: Goto translation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will definitely not need any function or include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TEXTPOOL sy-repid INTO t-text LANGUAGE [language].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will retrieve all text-elements specified for the actual report in the specified language. Do this once per required language. Read the table to get the text element's value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Man!! There is no simpler way than this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 13:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-text-elements-language-handling/m-p/1303998#M159459</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-05-25T13:13:08Z</dc:date>
    </item>
  </channel>
</rss>

