<?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 does sales text store? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987272#M1161849</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think STXL table and the TDOBJECT as KNA1 .The text are stored in LRAW form and to read the same you can use READ_TEXT Function module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Jan 2009 08:35:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-13T08:35:04Z</dc:date>
    <item>
      <title>which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987270#M1161847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, does any guy know, which table does sales text store?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(The sales text path is : xd02 -&amp;gt; sales area data -&amp;gt; Extra -&amp;gt; Texts.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks great.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987270#M1161847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987271#M1161848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;to get the text from a t-code (XD02 in your case) you have to use the FM READ_TEXT as follwos:&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;P&gt;        client   = sy-mandt&lt;/P&gt;&lt;P&gt;        id       = c_id&lt;/P&gt;&lt;P&gt;        language = c_lang&lt;/P&gt;&lt;P&gt;        name     = v_text     "is the order no &lt;/P&gt;&lt;P&gt;        object   = c_obj       " is the field&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        lines    = h_lines&lt;/P&gt;&lt;P&gt;  exceptions&lt;/P&gt;&lt;P&gt;      id&lt;/P&gt;&lt;P&gt;      language&lt;/P&gt;&lt;P&gt;      name&lt;/P&gt;&lt;P&gt;      not_found&lt;/P&gt;&lt;P&gt;      object&lt;/P&gt;&lt;P&gt;      reference_check&lt;/P&gt;&lt;P&gt;      wrong_access_to_archive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;anupama.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987271#M1161848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987272#M1161849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think STXL table and the TDOBJECT as KNA1 .The text are stored in LRAW form and to read the same you can use READ_TEXT Function module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987272#M1161849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987273#M1161850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sales text is stored in encrypted form in the database table. You cannot directly read it from database table. but you can use the function modue READ_TEXT to do so. The related table is STXH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below link for your reference&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-abap/va03-sales-order-text-field-2084723" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-abap/va03-sales-order-text-field-2084723&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/use-fm--read-text-to-read-the-various-text.htm" target="test_blank"&gt;http://www.sap-img.com/abap/use-fm--read-text-to-read-the-various-text.htm&lt;/A&gt;&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;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:42:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987273#M1161850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987274#M1161851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yimeng , &lt;/P&gt;&lt;P&gt;  Generally you cannot access the text directly form table , you will have to use the fm READ_TEXT to read the text . Please debugg your application putting a break point in the above said FM and check the parametrs being passed to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987274#M1161851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987275#M1161852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sales text is stored in encrypted form in the database table. You cannot directly read it from database table. but you can use the function modue READ_TEXT to do so. The related table is STXH and STXL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below link for your reference&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-abap/va03-sales-order-text-field-2084723" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-abap/va03-sales-order-text-field-2084723&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/use-fm--read-text-to-read-the-various-text.htm" target="test_blank"&gt;http://www.sap-img.com/abap/use-fm--read-text-to-read-the-various-text.htm&lt;/A&gt;&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;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2009 08:52:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987275#M1161852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-13T08:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987276#M1161853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use READ_TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 11:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987276#M1161853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T11:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987277#M1161854</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 FM READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on the text&lt;DEL&gt;&amp;gt;Goto&lt;/DEL&gt;&amp;gt;Header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u can find the text id &amp;amp; text object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987277#M1161854</guid>
      <dc:creator>sudhir_uppalapati</dc:creator>
      <dc:date>2009-01-21T12:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987278#M1161855</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;VBAK	Sales Document: Header Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBAP	Sales Document: Item Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBBE	Sales Requirements: Individual Records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBEP	Sales Document: Schedule Line Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBFA	Sales Document Flow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBLB	Sales document: Release order data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBLK	SD Document: Delivery Note Header&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBPA	Sales Document: Partner&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBUK	Sales Document: Header Status and Administrative Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBUP	Sales Document: Item Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:&lt;/P&gt;&lt;P&gt;Alok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jan 2009 04:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987278#M1161855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-22T04:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: which table does sales text store?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987279#M1161856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You directly will not be able to read the texts.&lt;/P&gt;&lt;P&gt;You can access them through READ_TEXT FM.&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jan 2009 07:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-does-sales-text-store/m-p/4987279#M1161856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-22T07:19:09Z</dc:date>
    </item>
  </channel>
</rss>

