<?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 Long Text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912163#M379618</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Experts:&lt;/P&gt;&lt;P&gt;      Who can tell me how to write long text for 'VX12N' by using fm 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;Thanks alot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Feb 2007 01:54:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-12T01:54:53Z</dc:date>
    <item>
      <title>Long Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912163#M379618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Experts:&lt;/P&gt;&lt;P&gt;      Who can tell me how to write long text for 'VX12N' by using fm 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;Thanks alot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2007 01:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912163#M379618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-12T01:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912164#M379619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check this example:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.howforge.com/abap-4-example-code-save-text" target="test_blank"&gt;http://www.howforge.com/abap-4-example-code-save-text&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2007 02:06:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912164#M379619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-12T02:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912165#M379620</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;check this sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZTEXT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : thead,&lt;/P&gt;&lt;P&gt;         tline,&lt;/P&gt;&lt;P&gt;         stxl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of ithead occurs 0.&lt;/P&gt;&lt;P&gt;        include structure thead.&lt;/P&gt;&lt;P&gt;data : end of ithead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : xteno like tline occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : f(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find  tdname , tdobject, tdid from the tcode.&lt;/P&gt;&lt;P&gt;select GOTO from the menubar in your tcode VX12N and choose Header.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ithead-TDOBJECT = 'HR_TEMNOTE'.&lt;/P&gt;&lt;P&gt;ithead-TDNAME = '01Q 194700351001B032P 00058477'.&lt;/P&gt;&lt;P&gt;ithead-TDID = 'TEM1'.&lt;/P&gt;&lt;P&gt;ithead-TDSPRAS = 'E'.&lt;/P&gt;&lt;P&gt;ithead-MANDT = SY-MANDT.&lt;/P&gt;&lt;P&gt;ithead-TDFORM = 'HR_TEM_NOTE_DISP'.&lt;/P&gt;&lt;P&gt;ithead-tdstyle = 'HR_TEM1'.&lt;/P&gt;&lt;P&gt;append ithead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XTENO-TDLINE = 'H2 Hai This is abab'.&lt;/P&gt;&lt;P&gt;APPEND XTENO.&lt;/P&gt;&lt;P&gt;XTENO-TDLINE = 'H2 Hai This is sap'.&lt;/P&gt;&lt;P&gt;APPEND XTENO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          CLIENT          = SY-MANDT&lt;/P&gt;&lt;P&gt;          HEADER          = ithead&lt;/P&gt;&lt;P&gt;          INSERT          = ' '&lt;/P&gt;&lt;P&gt;          SAVEMODE_DIRECT = 'X'&lt;/P&gt;&lt;P&gt;          OWNER_SPECIFIED = ' '&lt;/P&gt;&lt;P&gt;          LOCAL_CAT       = ' '&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          FUNCTION        = f&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          LINES           = xteno&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;          OBJECT          = 4&lt;/P&gt;&lt;P&gt;          OTHERS          = 5.&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;  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2007 02:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912165#M379620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-12T02:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912166#M379621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check T-CODE: 'VX12N', it seems hard to get information to fill TABLE HEADER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2007 02:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/1912166#M379621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-12T02:43:06Z</dc:date>
    </item>
  </channel>
</rss>

