<?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: text module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141703#M451228</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_TEXT function module used to read the standard text. This text can either be create using transaction SO10 or can be text in any documents like PO header text, Sales order header text, Sales order line item text, Accounting document header text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this example to understand how the text is read. Here the FM is used to read the "header note" text from sales document&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*----------------------------------------------------------------------*
*----------------------------------------------------------------------*
DATA: l_objname LIKE thead-tdname,
      l_vbeln   LIKE vbak-vbeln.

DATA: lit_textline  LIKE tline OCCURS 10 WITH HEADER LINE.

*" move sales document number
l_vbeln = 'Pass Sales document number here'.
l_objname = l_vbeln.

*" Read text
CALL FUNCTION 'READ_TEXT'
     EXPORTING
          client   = sy-mandt
          id       = '0001'
          language = sy-langu
          name     = l_objname
          object   = 'VBBK'
     TABLES
          lines    = lit_textline.
*----------------------------------------------------------------------*
*----------------------------------------------------------------------*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need any other information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 14:49:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T14:49:39Z</dc:date>
    <item>
      <title>text module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141699#M451224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is text module and &lt;/P&gt;&lt;P&gt;what is FM read_text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 14:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141699#M451224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T14:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: text module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141700#M451225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Function Module READ_TEXT reads the standard texts into internal tables which is stored in STXH/STXL tables.&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>Wed, 04 Apr 2007 14:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141700#M451225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T14:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: text module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141701#M451226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Standard texts are created in SO10 Transaction.&lt;/P&gt;&lt;P&gt;and most of the Std transactions contain Header and Item texts.&lt;/P&gt;&lt;P&gt;to retrive these Std texts from the Relative transactions we use the fun module READ_TEXT by passing the TEXT ID, OBJECT,NAME and LANGUAGE fields to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 14:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141701#M451226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T14:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: text module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141702#M451227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the long text can be retrieve using this function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the real time, we use READ_TEXT functions to read the SAP long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. Sales Order, Purchase Order Item text etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of READ_TEXT functions reading tables PBIM - Independent requirements for material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to check this sample link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapac002.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapac002.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SKJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 14:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141702#M451227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T14:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: text module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141703#M451228</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_TEXT function module used to read the standard text. This text can either be create using transaction SO10 or can be text in any documents like PO header text, Sales order header text, Sales order line item text, Accounting document header text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this example to understand how the text is read. Here the FM is used to read the "header note" text from sales document&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*----------------------------------------------------------------------*
*----------------------------------------------------------------------*
DATA: l_objname LIKE thead-tdname,
      l_vbeln   LIKE vbak-vbeln.

DATA: lit_textline  LIKE tline OCCURS 10 WITH HEADER LINE.

*" move sales document number
l_vbeln = 'Pass Sales document number here'.
l_objname = l_vbeln.

*" Read text
CALL FUNCTION 'READ_TEXT'
     EXPORTING
          client   = sy-mandt
          id       = '0001'
          language = sy-langu
          name     = l_objname
          object   = 'VBBK'
     TABLES
          lines    = lit_textline.
*----------------------------------------------------------------------*
*----------------------------------------------------------------------*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need any other information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 14:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-module/m-p/2141703#M451228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T14:49:39Z</dc:date>
    </item>
  </channel>
</rss>

