<?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: Regarding Classical Reporting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-classical-reporting/m-p/2589178#M592710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See this related to Scroll BAR&lt;/P&gt;&lt;P&gt;You can scroll in a detail list using the SCROLL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use the SCROLL statement with detail lists, you must remember the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only use the SCROLL statement for completed lists. If you use SCROLL before the first output statement of a list, it does not affect the list. If you use SCROLL after the first output statement of a list, it affects the entire list, that is, all subsequent output statements as well.&lt;/P&gt;&lt;P&gt;When you create a secondary list, a SCROLL statement without INDEX option always refers to the previously displayed list on which the interactive event occurred (index SY-LISTI).&lt;/P&gt;&lt;P&gt;Only when creating the basic list does the SCROLL statement refer to the list currently being created.&lt;/P&gt;&lt;P&gt;You can use the INDEX option to scroll explicitly on existing list levels. To do this, the lists need not be displayed. When the user displays the list again, it is scrolled to the specified position. If the specified list level does not exist, the system sets SY-SUBRC to 8.&lt;/P&gt;&lt;P&gt;If, during an interactive event, you want to scroll through the list you are currently creating, use SY-LSIND as the index in the SCROLL statement. Note that changing SY-LSIND only takes effect at the end of the event, regardless of where you change it in the processing block. If you want to set the list level explicitly, you can change SY-LSIND in the last statement of the processing block. This ensures that a SCROLL statement within the processing block accesses the correct list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;REPORT demo_list_scroll NO STANDARD PAGE HEADING LINE-SIZE 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE 'Create a secondary list by choosing SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW-PAGE LINE-SIZE 200.&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SCROLLING'.&lt;/P&gt;&lt;P&gt;DO 200 TIMES. WRITE sy-index. ENDDO.&lt;/P&gt;&lt;P&gt;SCROLL LIST RIGHT BY 48 PLACES INDEX sy-lsind.&lt;/P&gt;&lt;P&gt;sy-lsind = sy-lsind - 1.&lt;/P&gt;&lt;P&gt;WHEN 'LEFT'.&lt;/P&gt;&lt;P&gt;SCROLL LIST LEFT BY 12 PLACES.&lt;/P&gt;&lt;P&gt;WHEN 'RGHT'.&lt;/P&gt;&lt;P&gt;SCROLL LIST RIGHT BY 12 PLACES.&lt;/P&gt;&lt;P&gt;ENDCASE. &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>Tue, 24 Jul 2007 05:42:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-24T05:42:14Z</dc:date>
    <item>
      <title>Regarding Classical Reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-classical-reporting/m-p/2589177#M592709</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;&lt;/P&gt;&lt;P&gt;I am using classical report according the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The out put contains 22 fields and extend up to 170 char line-size.&lt;/P&gt;&lt;P&gt;and I got Horizontal scroll bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What my requirement is first 4 fields in the out put should not move , when horizontal scroll bar moves. Its just like Data base tables in SE11. there also field names will not move even if we scroll horizontally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me the code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not in ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sarath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 05:36:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-classical-reporting/m-p/2589177#M592709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T05:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Classical Reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-classical-reporting/m-p/2589178#M592710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See this related to Scroll BAR&lt;/P&gt;&lt;P&gt;You can scroll in a detail list using the SCROLL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use the SCROLL statement with detail lists, you must remember the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only use the SCROLL statement for completed lists. If you use SCROLL before the first output statement of a list, it does not affect the list. If you use SCROLL after the first output statement of a list, it affects the entire list, that is, all subsequent output statements as well.&lt;/P&gt;&lt;P&gt;When you create a secondary list, a SCROLL statement without INDEX option always refers to the previously displayed list on which the interactive event occurred (index SY-LISTI).&lt;/P&gt;&lt;P&gt;Only when creating the basic list does the SCROLL statement refer to the list currently being created.&lt;/P&gt;&lt;P&gt;You can use the INDEX option to scroll explicitly on existing list levels. To do this, the lists need not be displayed. When the user displays the list again, it is scrolled to the specified position. If the specified list level does not exist, the system sets SY-SUBRC to 8.&lt;/P&gt;&lt;P&gt;If, during an interactive event, you want to scroll through the list you are currently creating, use SY-LSIND as the index in the SCROLL statement. Note that changing SY-LSIND only takes effect at the end of the event, regardless of where you change it in the processing block. If you want to set the list level explicitly, you can change SY-LSIND in the last statement of the processing block. This ensures that a SCROLL statement within the processing block accesses the correct list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;REPORT demo_list_scroll NO STANDARD PAGE HEADING LINE-SIZE 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE 'Create a secondary list by choosing SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW-PAGE LINE-SIZE 200.&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SCROLLING'.&lt;/P&gt;&lt;P&gt;DO 200 TIMES. WRITE sy-index. ENDDO.&lt;/P&gt;&lt;P&gt;SCROLL LIST RIGHT BY 48 PLACES INDEX sy-lsind.&lt;/P&gt;&lt;P&gt;sy-lsind = sy-lsind - 1.&lt;/P&gt;&lt;P&gt;WHEN 'LEFT'.&lt;/P&gt;&lt;P&gt;SCROLL LIST LEFT BY 12 PLACES.&lt;/P&gt;&lt;P&gt;WHEN 'RGHT'.&lt;/P&gt;&lt;P&gt;SCROLL LIST RIGHT BY 12 PLACES.&lt;/P&gt;&lt;P&gt;ENDCASE. &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>Tue, 24 Jul 2007 05:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-classical-reporting/m-p/2589178#M592710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T05:42:14Z</dc:date>
    </item>
  </channel>
</rss>

