<?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: a report program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636644#M606669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can print first the right and then the left, using the BACK or  SKIP TO LINE &amp;lt;n&amp;gt;.  BACK can be used with or without RESERVE.   Also don't forget about POSITION &amp;lt;n&amp;gt; to set the output column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BACK returns to the first line of the current page after TOP-OF-PAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to monitor the number lines you print because once you overflow, you cannot BACK to a prior page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look up in the ABAP help for examples of using these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;P&gt;(Points are appreciated)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 16:32:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T16:32:21Z</dc:date>
    <item>
      <title>a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636641#M606666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;i hav created report program ....in which i hav printing data in two colums(sections)&lt;/P&gt;&lt;P&gt;of a page....im printing first 'first column'...n then 'second one' ( i.e. im printing left side of page and then right side of page )  n  i hav declaired &amp;lt;b&amp;gt;line-count 60&amp;lt;/b&amp;gt; ...while printing on left side if page ends due to line-count is set.....im not able to print on right of that page because page is set to next page( and it start printing from next page on right side as it is changed)...i want know that .... is it posiible to come back to previous page while printing in report program .....(as i hav mentioned problem ).....i want to know the code for that if possible....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gajanan Galande&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 15:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636641#M606666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T15:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636642#M606667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;declare an Internal table with 2 column fields&lt;/P&gt;&lt;P&gt;and then populate the values into that internal table and write the data of that ITAB in the output, so that both the columns are printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can't print leftside first and then right side next in the report output.&lt;/P&gt;&lt;P&gt;At a time you will write the contents of both the columns in a single line and then go to 2nd line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 16:05:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636642#M606667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T16:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636643#M606668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can do that by manipulating the fields sy-pagno (page number) and sy-linno (line number). Check out this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 100 times.&lt;/P&gt;&lt;P&gt;write: / 'first column'.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-pagno = 1.&lt;/P&gt;&lt;P&gt;sy-linno = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 100 times.&lt;/P&gt;&lt;P&gt;write: /50 'second column'.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will really only work without the line-count 60.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kevin Kuestermeyer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 16:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636643#M606668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T16:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636644#M606669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can print first the right and then the left, using the BACK or  SKIP TO LINE &amp;lt;n&amp;gt;.  BACK can be used with or without RESERVE.   Also don't forget about POSITION &amp;lt;n&amp;gt; to set the output column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BACK returns to the first line of the current page after TOP-OF-PAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to monitor the number lines you print because once you overflow, you cannot BACK to a prior page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look up in the ABAP help for examples of using these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;P&gt;(Points are appreciated)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 16:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636644#M606669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T16:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636645#M606670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey in report program by using BACK command u can set cursor to intial postion ...plz check how actually it works..&lt;/P&gt;&lt;P&gt;thanks 4 help...and that u hav given solution using internal table ...i hav tried tht&lt;/P&gt;&lt;P&gt;but it is not working in which i want ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 19:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636645#M606670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T19:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636646#M606671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to monitor the number lines you print because once you overflow, &amp;lt;b&amp;gt;you cannot BACK to a prior page.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i want to know tht i can go to previous page after after printing on next page  is it possibe or not?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 04:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636646#M606671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T04:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636647#M606672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to monitor the number lines you print because once you overflow, &amp;lt;b&amp;gt;you cannot BACK to a prior page.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i want to know tht i can go to previous page after after printing on next page  is it possibe or not?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 04:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636647#M606672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T04:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: a report program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636648#M606673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BACK only returns to the top of the current page.  I have used this in 3-up label printing programs, some years ago.   If you need to return to the first page, try the method suggested in the post by Kevin, to set sy-pagno and sy-linno to 1.  I have not tried this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 12:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-report-program/m-p/2636648#M606673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T12:36:43Z</dc:date>
    </item>
  </channel>
</rss>

