<?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: Which table stores the TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657609#M291787</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 text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2006 10:01:18 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-11-27T10:01:18Z</dc:date>
    <item>
      <title>Which table stores the TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657607#M291785</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 transaction VD02 after the customer number is entered, I go to the texts from the GOTO . Please let me know in which table the these text are maintained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 09:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657607#M291785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T09:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Which table stores the TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657608#M291786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are stored in STXH and STXL tables. But you will have to READ_TEXT function to read the text. You can find the parameter values, in the Go To --&amp;gt; Header. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While saving the text, use SAVE_TEXT function, following COMMIT_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 09:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657608#M291786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T09:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Which table stores the TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657609#M291787</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 text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 10:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657609#M291787</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-27T10:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Which table stores the TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657610#M291788</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;It store in : STXH ,STXL.&lt;/P&gt;&lt;P&gt;But if you want to read the value, just use this FM : READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the sample code: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      id                      = id
      language                = sy-langu
      name                    = material
      object                  = obyek
    IMPORTING
      header                  = theader
    TABLES
      lines                   = tlines
    EXCEPTIONS
      id                      = 1
      language                = 2
      name                    = 3
      not_found               = 4
      object                  = 5
      reference_check         = 6
      wrong_access_to_archive = 7
      OTHERS                  = 8.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 10:01:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-stores-the-text/m-p/1657610#M291788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T10:01:39Z</dc:date>
    </item>
  </channel>
</rss>

