<?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 Sourcetable for text elements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505123#M1259168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, could You tell me which table keeps application texts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got such problem, that I'd like to determine text language by code, so for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF ( condition1 ) .
  text-001 will be taken in language A .
ELSEIF ( condition 2 ) .
  text-002 will be taken in language B .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF ( condition1 ) .
  langu = 'A' .
ELSEIF ( condition 2 ) .
  langu = 'B' .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but it has no effect, because when sy-langu in one line is set to new value ... in the next line in debuger it takes the old value &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So maybe I could ... SELECT texts directly from database with language key, according to some code-condition ... is it make any sense? &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: langu LIKE sy-langu .

IF ( condition1 ) .
  langu = 'A' .
ELSEIF ( condition 2 ) .
  langu = 'B' .
ENDIF .

SELECT text FROM text_table WHERE language = langu .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Which table are text kept in? I'd be thankful for some tip, greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2009 13:20:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-14T13:20:42Z</dc:date>
    <item>
      <title>Sourcetable for text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505123#M1259168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, could You tell me which table keeps application texts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got such problem, that I'd like to determine text language by code, so for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF ( condition1 ) .
  text-001 will be taken in language A .
ELSEIF ( condition 2 ) .
  text-002 will be taken in language B .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF ( condition1 ) .
  langu = 'A' .
ELSEIF ( condition 2 ) .
  langu = 'B' .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but it has no effect, because when sy-langu in one line is set to new value ... in the next line in debuger it takes the old value &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So maybe I could ... SELECT texts directly from database with language key, according to some code-condition ... is it make any sense? &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: langu LIKE sy-langu .

IF ( condition1 ) .
  langu = 'A' .
ELSEIF ( condition 2 ) .
  langu = 'B' .
ENDIF .

SELECT text FROM text_table WHERE language = langu .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Which table are text kept in? I'd be thankful for some tip, greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505123#M1259168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sourcetable for text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505124#M1259169</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 this Statement to get the text elements of the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TEXTPOOL prog INTO itab LANGUAGE lang.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more help press F1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:27:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505124#M1259169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Sourcetable for text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505125#M1259170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mentioned that tryed to change sy-langu, I think it is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just case sy-langu and write the text you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  hope this was helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P-.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505125#M1259170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sourcetable for text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505126#M1259171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check with table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CIFTXTPOOL - Table for Storing Additional Integration Model Texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505126#M1259171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sourcetable for text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505127#M1259172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Krishna Gowrneni&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CIFTXTPOOL&lt;/EM&gt; No such table in our SAP 4.6 C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sourcetable-for-text-elements/m-p/5505127#M1259172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:52:18Z</dc:date>
    </item>
  </channel>
</rss>

