<?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: The function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530924#M573879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is mainly used to read the header text/ long text...&lt;/P&gt;&lt;P&gt; For example ,  goto VF03 and give billing doc num and enter...&lt;/P&gt;&lt;P&gt;from menu goto--&amp;gt; header --&amp;gt; header text ( if you want to display this text you need to use this function module)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jul 2007 08:27:35 GMT</pubDate>
    <dc:creator>former_member196280</dc:creator>
    <dc:date>2007-07-20T08:27:35Z</dc:date>
    <item>
      <title>The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530921#M573876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For what purpose this function is used?&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              ID                      = 'VALU'&lt;/P&gt;&lt;P&gt;              LANGUAGE                = sy-langu&lt;/P&gt;&lt;P&gt;              NAME                    = tdname &lt;/P&gt;&lt;P&gt;              OBJECT                  = 'FEATURE'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              LINES                   = lines&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              ID                      = 1&lt;/P&gt;&lt;P&gt;              LANGUAGE                = 2&lt;/P&gt;&lt;P&gt;              NAME                    = 3&lt;/P&gt;&lt;P&gt;              NOT_FOUND               = 4&lt;/P&gt;&lt;P&gt;              OBJECT                  = 5&lt;/P&gt;&lt;P&gt;              REFERENCE_CHECK         = 6&lt;/P&gt;&lt;P&gt;              WRONG_ACCESS_TO_ARCHIVE = 7&lt;/P&gt;&lt;P&gt;              OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:24:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530921#M573876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T08:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530922#M573877</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;In order to process text modules in application programs, all information about a text module must be transferred to internal work areas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A text is read from the text file or text memory with this function module. It must be described fully by specifying OBJECT, NAME, ID, and LANGUAGE. Generic entries in these parameters are not valid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When header information and text lines have been read successfully, they are transferred to the work areas HEADER and LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530922#M573877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T08:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530923#M573878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the texts within SAP are stored in the STXH/STXL table and the identification of the text is the transaction document and the text id of the text ( to support multiple texts per transaction document). Couple of days earlier LJN had mentioned the steps to get the name and text id. (double click on the text and then go to header info ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use FM READ_TEXT to read the information as this stable stores the information in the RAW format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLIENT                        = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    id                            =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    language                      =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    name                          =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    object                        =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_CAT                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    lines                         =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ID                            = 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LANGUAGE                      = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NAME                          = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NOT_FOUND                     = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJECT                        = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REFERENCE_CHECK               = 6&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRONG_ACCESS_TO_ARCHIVE       = 7&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                        = 8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPscript: Read text                                                                                &lt;/P&gt;&lt;P&gt;In order to process text modules in application programs, all              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;information about a text module must be transferred to internal work       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;areas.                                                                                &lt;/P&gt;&lt;P&gt;A text is read from the text file or text memory with this function        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module. It must be described fully by specifying OBJECT, NAME, ID, and     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGUAGE. Generic entries in these parameters are not valid.                                                                                &lt;/P&gt;&lt;P&gt;When header information and text lines have been read successfully, they   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are transferred to the work areas HEADER and LINES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:27:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530923#M573878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T08:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530924#M573879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is mainly used to read the header text/ long text...&lt;/P&gt;&lt;P&gt; For example ,  goto VF03 and give billing doc num and enter...&lt;/P&gt;&lt;P&gt;from menu goto--&amp;gt; header --&amp;gt; header text ( if you want to display this text you need to use this function module)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530924#M573879</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-07-20T08:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530925#M573880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;READ_TEXT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;SAPscript: Read text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to process text modules in application programs, all information about a text module must be transferred to internal work areas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A text is read from the text file or text memory with this function module. It must be described fully by specifying OBJECT, NAME, ID, and LANGUAGE. Generic entries in these parameters are not valid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When header information and text lines have been read successfully, they are transferred to the work areas HEADER and LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters&lt;/P&gt;&lt;P&gt;CLIENT&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;OBJECT&lt;/P&gt;&lt;P&gt;ARCHIVE_HANDLE&lt;/P&gt;&lt;P&gt;LOCAL_CAT&lt;/P&gt;&lt;P&gt;HEADER&lt;/P&gt;&lt;P&gt;LINES&lt;/P&gt;&lt;P&gt;&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;Function Group&lt;/P&gt;&lt;P&gt;STXD&lt;/P&gt;&lt;P&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530925#M573880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T08:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530926#M573881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to &lt;A href="https://community.sap.com/www.se37.com" target="test_blank"&gt;www.se37.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and type in the FM name and you can get the documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*&lt;STRONG&gt;reward for useful answers&lt;/STRONG&gt;*&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:31:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530926#M573881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T08:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: The function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530927#M573882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;read_text is used to read text(header or item text) from standard transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 08:31:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/the-function/m-p/2530927#M573882</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-07-20T08:31:35Z</dc:date>
    </item>
  </channel>
</rss>

