<?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 AT FIRST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169200#M754123</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;          AT FIRST control break event is used for writing headings in the report.is that heading will come on every page ,if report have more than one page ??????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 16:52:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T16:52:01Z</dc:date>
    <item>
      <title>AT FIRST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169200#M754123</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;          AT FIRST control break event is used for writing headings in the report.is that heading will come on every page ,if report have more than one page ??????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 16:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169200#M754123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T16:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: AT FIRST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169201#M754124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For heading on every page you need to use TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 16:55:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169201#M754124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T16:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: AT FIRST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169202#M754125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no, this is not true. Iif you want a heading on every page you have to use event TOP_OF_PAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 16:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169202#M754125</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-12-11T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: AT FIRST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169203#M754126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will see the results yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT demo_page_header_footer NO STANDARD PAGE HEADING 
                               LINE-COUNT 0(1). 

PARAMETER p_carrid TYPE sflight-carrid. 

DATA: sflight_tab TYPE TABLE OF sflight, 
      sflight_wa  LIKE LINE  OF sflight_tab. 

DATA lines TYPE i. 

TOP-OF-PAGE. 
  WRITE: / sflight_wa-carrid, sflight_wa-connid. 
  ULINE. 

END-OF-PAGE. 
  ULINE. 

START-OF-SELECTION. 

  SELECT carrid connid fldate 
         FROM sflight 
         INTO CORRESPONDING FIELDS OF TABLE sflight_tab 
         WHERE carrid = p_carrid 
         ORDER BY carrid connid. 

  LOOP AT sflight_tab INTO sflight_wa. 
    AT NEW connid. 
      SELECT COUNT( DISTINCT fldate ) 
             FROM sflight 
             INTO lines 
             WHERE carrid = sflight_wa-carrid AND 
                   connid = sflight_wa-connid. 
      lines = lines + 3. 
      NEW-PAGE LINE-COUNT lines. 
    ENDAT. 
    WRITE / sflight_wa-fldate. 
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 16:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-first/m-p/3169203#M754126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T16:58:00Z</dc:date>
    </item>
  </channel>
</rss>

