<?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 output write statement heading in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429070#M205344</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a write statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 ON.&lt;/P&gt;&lt;P&gt;WRITE: /3 'Order Number', 25 'Item Number'.&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the output, it is followed by a very long list of order nums and item nums. When I move the cursor down to see the full list, I still want the above heading to appear on the screen but the values can keep moving(that means even if I scroll down, the heading should not move up).&lt;/P&gt;&lt;P&gt;Can you please tell me any keywords I need to add to the above write statement inorder to produce this effect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Jun 2006 20:34:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-22T20:34:35Z</dc:date>
    <item>
      <title>output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429070#M205344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a write statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 ON.&lt;/P&gt;&lt;P&gt;WRITE: /3 'Order Number', 25 'Item Number'.&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the output, it is followed by a very long list of order nums and item nums. When I move the cursor down to see the full list, I still want the above heading to appear on the screen but the values can keep moving(that means even if I scroll down, the heading should not move up).&lt;/P&gt;&lt;P&gt;Can you please tell me any keywords I need to add to the above write statement inorder to produce this effect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429070#M205344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T20:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429071#M205345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nuren,&lt;/P&gt;&lt;P&gt;write ur code in the event TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 ON.&lt;/P&gt;&lt;P&gt;WRITE: /3 'Order Number', 25 'Item Number'.&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 OFF.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429071#M205345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T20:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429072#M205346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All you need to do is put that code under the TOP-OF-PAGE event in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report zrich_0001.

data: ivbap type table of vbap with header line.

start-of-selection.

  select * into table ivbap from vbap
         up to 100 rows.
  loop at ivbap.
    write:/3 ivbap-vbeln, at 25 ivbap-posnr.
  endloop.


top-of-page.

  format color 1 on.
  write: /3 'Order Number', 25 'Item Number'.
  format color 1 off.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429072#M205346</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-22T20:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429073#M205347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nuren,&lt;/P&gt;&lt;P&gt; Put the code in &amp;lt;b&amp;gt;TOP-OF-PAGE&amp;lt;/b&amp;gt; event.&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 ON.&lt;/P&gt;&lt;P&gt;WRITE: /3 'Order Number', 25 'Item Number'.&lt;/P&gt;&lt;P&gt;FORMAT COLOR 1 OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429073#M205347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T20:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429074#M205348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice trick, Priya!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; I sure hope you didn't do that intensionally.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429074#M205348</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-22T20:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429075#M205349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI RICH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT WAS NOT INTENSIONALLY DONE....&lt;/P&gt;&lt;P&gt;FIRST I WAS NOT SURE OF THE POST SO I HAD DELETED IT BUT LATER I HAD CHECKED AND GAVE THE ANSWER...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF U WANT TAKE THE WHOLE POINTS..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429075#M205349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T20:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: output write statement heading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429076#M205350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't think that it was intensional,  just checking though.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've seen in the past where someone has posted a "Hi there", just to get first in line, then come back with a solution a couple minutes later after more have posted with correct answers.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case, it could have been seen as above, but I believe you when you say it was not intensional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not worried about the points, just want this forum to be an &amp;lt;u&amp;gt;&amp;lt;b&amp;gt;honest&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; one.  Cool?  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 20:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-write-statement-heading/m-p/1429076#M205350</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-22T20:58:55Z</dc:date>
    </item>
  </channel>
</rss>

