<?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 text element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433672#M824685</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is text elements..how to create and how to use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Feb 2008 17:52:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-24T17:52:01Z</dc:date>
    <item>
      <title>text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433672#M824685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is text elements..how to create and how to use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 17:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433672#M824685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T17:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433673#M824686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Text elements are used to store texts&lt;/STRONG&gt; displayed on the selection screens or output screens of ABAP reports, but are not hard-coded in programs. The different types of text element include: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report or program titles&lt;/P&gt;&lt;P&gt;List headers&lt;/P&gt;&lt;P&gt;Column headers&lt;/P&gt;&lt;P&gt;Selection texts&lt;/P&gt;&lt;P&gt;Text symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for text element creation.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/e3/960a0beb0711d194d100a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/e3/960a0beb0711d194d100a0c94260a5/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 19:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433673#M824686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T19:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433674#M824687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Text elements are used to store text , the basic purpose of using this is that the same program can be run in diffrent languages and so the titles/headers must be in the language the program is execued , if you hardcode it in the program this will not work , so we use a text elemnt and the system selects the language for the text element based on the language in which the user has logged in.&lt;/P&gt;&lt;P&gt;You can translate a text element by using the option in the menu&lt;/P&gt;&lt;P&gt;Goto--&amp;gt; Translation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are useful when the program is used in other languages.&lt;/P&gt;&lt;P&gt;So that they are automatically converted to that language.&lt;/P&gt;&lt;P&gt;So define the texts in the text elements and use their ID's like (TXT-05) in the code&lt;/P&gt;&lt;P&gt;don't sue the complete texts in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection texts are used to give meaning ful names for the fields on selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto your program in display mode in se38&lt;/P&gt;&lt;P&gt;in menu goto&lt;DEL&gt;text elements&lt;/DEL&gt;selection texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols offer functionlity similar to pointers in other programming languages. It does not occupy memory for the data object, it points to the object that has been assigned to the field symbol. You use the assign command to relate to the data object. After the assign operation you can work with field symbol in the same way as with the object itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You define the field symbol as: field-symbols &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbol &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;data field value 'X'.&lt;/P&gt;&lt;P&gt;asssign field to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field symbol &amp;lt;fs&amp;gt; now inherits all the properties from the assigned field, and you can work with the field symbol in the same way as with the field itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at the examples given here for working with field symbols:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/chap2401.txt" target="test_blank"&gt;http://www.sapgenie.com/abap/code/chap2401.txt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/chap2402.txt" target="test_blank"&gt;http://www.sapgenie.com/abap/code/chap2402.txt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/chap2403.txt" target="test_blank"&gt;http://www.sapgenie.com/abap/code/chap2403.txt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple program.&lt;/P&gt;&lt;P&gt;data : letter(10) .&lt;/P&gt;&lt;P&gt;field-symbols : &amp;lt;fs&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign letter to &amp;lt;fs&amp;gt; type 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple program.&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF NAME,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXTNAME(10),&lt;/P&gt;&lt;P&gt;FIRSTNAME(10),&lt;/P&gt;&lt;P&gt;LASTNAME(10),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF NAME.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F&amp;gt; TYPE NAME.&lt;/P&gt;&lt;P&gt;DATA: LINE(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE = 'JOHN SMITH SHRI'.&lt;/P&gt;&lt;P&gt;ASSIGN LINE TO &amp;lt;F&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;WRITE: / 'Lastname:', &amp;lt;F&amp;gt;-LASTNAME,&lt;/P&gt;&lt;P&gt;'Firstname:', &amp;lt;F&amp;gt;-FIRSTNAME,&lt;/P&gt;&lt;P&gt;'Nextname :', &amp;lt;F&amp;gt;-NEXTNAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 01:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433674#M824687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T01:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433675#M824688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text elements cover any descriptive text that appears on the selection screen or output screen of an ABAP/4 program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can store these text elements outside the program in language-dependent text pools. Your program automatically uses the text elements of the user's logon language. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create and maintain text elements without changing the program coding. You can create standard text pools, which you can copy from program to program. If you consequently work with text symbols only and do not use string literals in WRITE statements, your program becomes language-independent. Only the text elements from the original language text pool must be translated to other languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The translation of text elements is fully supported by the ABAP/4 workbench. From an existing text pool for the original language, a translator can create the text pools for different other languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap05/sld019.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap05/sld019.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 03:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433675#M824688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T03:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433676#M824689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;text elements are used to give user defined titles and headings to ur reports........instead of taking the title directly from attributes if u define te4xt elements and re exe cute ur program ur defdined text wud appear .....&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; to define text elements ...&lt;/P&gt;&lt;P&gt;   menu bar .... goto ..... text elements ..... enter headings and columns .... save activate ,,,,, re exe ur report ..... c the impact .... &lt;/P&gt;&lt;P&gt; bye take care&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 03:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433676#M824689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T03:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: text element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433677#M824690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nice ans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-element/m-p/3433677#M824690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:46:30Z</dc:date>
    </item>
  </channel>
</rss>

