<?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: problem with report layout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176483#M124452</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Santosh,&lt;/P&gt;&lt;P&gt;  Please try the sample program it should help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REPORT zsursh_end_of_page LINE-SIZE 40 LINE-COUNT 25(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_mara like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: 'Page with Header and Footer'.&lt;/P&gt;&lt;P&gt;  ULINE AT /(27).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  WRITE: /30 'Page', sy-pagno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select * from mara into table&lt;/P&gt;&lt;P&gt;        it_mara up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_mara.&lt;/P&gt;&lt;P&gt;    WRITE : / it_mara-matnr.&lt;/P&gt;&lt;P&gt;  ENDloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do reward points if it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2006 22:18:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-15T22:18:52Z</dc:date>
    <item>
      <title>problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176480#M124449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I need to get uline at end of each page on the output.&lt;/P&gt;&lt;P&gt;even if I use end of page am not geting proper output.&lt;/P&gt;&lt;P&gt;can anybody help me.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Feb 2024 02:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176480#M124449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T02:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176481#M124450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt; Try using &lt;/P&gt;&lt;P&gt; WRITE:/ SY-ULINE(150).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 22:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176481#M124450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T22:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176482#M124451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is this an alv or conventional report? alv's need a form associated with an end of page event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 22:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176482#M124451</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-02-15T22:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176483#M124452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Santosh,&lt;/P&gt;&lt;P&gt;  Please try the sample program it should help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REPORT zsursh_end_of_page LINE-SIZE 40 LINE-COUNT 25(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_mara like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: 'Page with Header and Footer'.&lt;/P&gt;&lt;P&gt;  ULINE AT /(27).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  WRITE: /30 'Page', sy-pagno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select * from mara into table&lt;/P&gt;&lt;P&gt;        it_mara up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_mara.&lt;/P&gt;&lt;P&gt;    WRITE : / it_mara-matnr.&lt;/P&gt;&lt;P&gt;  ENDloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do reward points if it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 22:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176483#M124452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T22:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176484#M124453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. When you specify in your report heading for example   LINE-COUNT 65,  end-of-page event will not be triggered unless until the out put reaches 65 lines. So if there is no data in output for 65 lines then you don&amp;#146;t get uline that you specified under end-of-page event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. So you need to check, if line-count is not reaching 65 then you just have to explicitly trigger that even by skipping the lines that are required to trigger that event.&lt;/P&gt;&lt;P&gt;Examaple: v_linct = sy-LINCT .&lt;/P&gt;&lt;P&gt;if v_linct &amp;lt; 65.&lt;/P&gt;&lt;P&gt;v_skipln = 65 - v_linct.&lt;/P&gt;&lt;P&gt;skip v_skipln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need anything else.&lt;/P&gt;&lt;P&gt;Suresh B Mannem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 22:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176484#M124453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T22:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176485#M124454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did the solution help you.........?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is so...Reward Points...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh B Mannem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 00:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176485#M124454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T00:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176486#M124455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;In new versions of SAP it is mandatory to specify the LINE-COUNT as :&lt;/P&gt;&lt;P&gt;REPORT  Z538TEST12 LINE-COUNT 75(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where 75 is the total line count&lt;/P&gt;&lt;P&gt; and   3 is the number of FOOTER lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unless you specify this, the END-OF-PAGE will not be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg.&lt;/P&gt;&lt;P&gt;REPORT  Z538TEST12 LINE-COUNT 75.&lt;/P&gt;&lt;P&gt;--Here Number of Footer lines are not specified. Hence END-OF-PAGE will not be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ps: Reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 02:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176486#M124455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T02:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: problem with report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176487#M124456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can write ULINE  in the end of page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the end of page to trigger , u need to write LINE-COUNT with REPORT statement, and if the number of records are not reaching the line count then u need to write &lt;/P&gt;&lt;P&gt;SKIP (n) to reach the end of page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u try like this , it will certainly work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;hyma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 04:11:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-report-layout/m-p/1176487#M124456</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-16T04:11:48Z</dc:date>
    </item>
  </channel>
</rss>

