<?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: RFQ Header Texts in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024706#M715127</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the FM: READ_TEXT. You may also refer to table STXH to know the object ids, object name,etc related to the data to be passed to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2007 02:12:38 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2007-11-06T02:12:38Z</dc:date>
    <item>
      <title>RFQ Header Texts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024705#M715126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to extract texts from RFQ header text. Appreciate anyone could advise which table should i reference to. Is it ok to use function "READ_TEXT_INLINE" or "READ_TEXT"? Because there maybe mulitple lines in the text field. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;CL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024705#M715126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T02:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: RFQ Header Texts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024706#M715127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the FM: READ_TEXT. You may also refer to table STXH to know the object ids, object name,etc related to the data to be passed to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024706#M715127</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-11-06T02:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: RFQ Header Texts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024707#M715128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double click on the header text in RFQ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in menu GOTO-&amp;gt; Header&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find the Text ID        &lt;/P&gt;&lt;P&gt;            Text object    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then take Tcode:  SE75&lt;/P&gt;&lt;P&gt;text object and  text id are changed there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to get the content :&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;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;      id                            = &amp;lt;Text id&amp;gt;&lt;/P&gt;&lt;P&gt;      language                      = sy-langu&lt;/P&gt;&lt;P&gt;      name                          = &amp;lt;rfqno&amp;gt;&lt;/P&gt;&lt;P&gt;      object                        = &amp;lt;Text object name&amp;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;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_CAT                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                         = tlines&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;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&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;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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The contents will be available in tlines internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfq-header-texts/m-p/3024707#M715128</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2007-11-06T02:58:00Z</dc:date>
    </item>
  </channel>
</rss>

