<?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: Interactive Report? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620855#M277774</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the reply mike the problem is solved.... &lt;/P&gt;&lt;P&gt;i got a question for u again...&lt;/P&gt;&lt;P&gt;this time its frm BDC...&lt;/P&gt;&lt;P&gt;i have taken  8 mandatory fields nd i uploaded the legacy data... and if the client wants to make another feild as mandatory and wud want to add to the database how can it b done without modifying the progarm code...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Oct 2006 18:10:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-11T18:10:14Z</dc:date>
    <item>
      <title>Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620851#M277770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello there,&lt;/P&gt;&lt;P&gt;I placed a Input/Output field on the interactive report ...  and if I enter any page number in the Input/Output it shuld take me to that page of the INTERACTIVE REPORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also I want to c the current page number /total count of pages...&lt;/P&gt;&lt;P&gt;can anyone help me wid this query&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 17:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620851#M277770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T17:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620852#M277771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use sy-pagno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 17:23:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620852#M277771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T17:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620853#M277772</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;Try to use the statament SCROLL LIST TO PAGE &amp;lt;PAGE&amp;gt; To show a certain page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this tip to write page/total page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZLTEST3 NO STANDARD PAGE HEADING LINE-COUNT 65LINE-SIZE 80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NUM_PAGES_C(10) TYPE C.&lt;/P&gt;&lt;P&gt;PERFORM WRITE.&lt;/P&gt;&lt;P&gt;PERFORM GET_TOTAL_PAGENO.&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/(SY-LINCT) 'TEST - TEST' CENTERED.&lt;/P&gt;&lt;P&gt;WRITE: / SY-DATUM, 60 SY-PAGNO,'of', '*****'.&lt;/P&gt;&lt;P&gt;SKIP.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Form WRITE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 200 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ 'TEST', SY-LINNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " WRITE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Form GET_TOTAL_PAGENO&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GET_TOTAL_PAGENO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE SY-PAGNO TO NUM_PAGES_C LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;DO SY-PAGNO TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE 2 OF PAGE SY-INDEX.&lt;/P&gt;&lt;P&gt;REPLACE '*****' WITH NUM_PAGES_C INTO SY-LISEL.&lt;/P&gt;&lt;P&gt;MODIFY LINE 2 OF PAGE SY-INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " GET_TOTAL_PAGENO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 17:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620853#M277772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T17:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620854#M277773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me check that and reply u back mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 02:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620854#M277773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T02:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620855#M277774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the reply mike the problem is solved.... &lt;/P&gt;&lt;P&gt;i got a question for u again...&lt;/P&gt;&lt;P&gt;this time its frm BDC...&lt;/P&gt;&lt;P&gt;i have taken  8 mandatory fields nd i uploaded the legacy data... and if the client wants to make another feild as mandatory and wud want to add to the database how can it b done without modifying the progarm code...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 18:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620855#M277774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T18:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive Report?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620856#M277775</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;If you program don't fill this new field you can't do it without to change the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 18:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1620856#M277775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T18:36:56Z</dc:date>
    </item>
  </channel>
</rss>

