<?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/1134150#M112572</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement places the contents of the variable &amp;lt;f&amp;gt; for the current output line (system field SY-LINNO) into the HIDE area. The variable &amp;lt;f&amp;gt; must not necessarily appear on the current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make your program more readable, always place the HIDE statement directly after the output statement for the variable &amp;lt;f&amp;gt; or after the last output statement for the current line&lt;/P&gt;&lt;P&gt;READ LINE:&lt;/P&gt;&lt;P&gt;All of the lists generated by a single program are stored internally in the system. You can therefore access any list in a program that was created for the same screen and that has not yet been deleted by returning to a lower list level. To read lines, use the statements READ LINE and READ CURRENT LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read a line from a list after an interactive list event, use the READ LINE statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE &amp;lt;lin&amp;gt; [INDEX &amp;lt;idx&amp;gt;]&lt;/P&gt;&lt;P&gt;[FIELD VALUE &amp;lt;f1&amp;gt; [INTO &amp;lt;g 1&amp;gt;] ... &amp;lt;f n&amp;gt; [INTO &amp;lt;g n&amp;gt;]] &lt;/P&gt;&lt;P&gt;[OF CURRENT PAGE|OF PAGE &amp;lt;p&amp;gt;].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Feb 2006 09:27:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-20T09:27:21Z</dc:date>
    <item>
      <title>INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134142#M112564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I WANT TO KNOW WHICH ONE IS BETTER TO BE USED IN INTERACTIVE REPORT ONH THE EVENT AT-LINE SELECTION.&lt;/P&gt;&lt;P&gt;1.READ LINE FIELD VALUE&lt;/P&gt;&lt;P&gt;2.HIDE STATEMENT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134142#M112564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134143#M112565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No need of using HIDE statement in the event AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;it can be used outside this event.the prerequisite for this is an ouput statement. let it be write statement!!&lt;/P&gt;&lt;P&gt;HIDE statement retains the current ouput values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE must be used in AT LINE-SELECTION and should be used inside LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think performance wise there will be no difference but READ LINE has got more advantages than HIDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the main draw back with hide is the o/p should in the same line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134143#M112565</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-20T06:13: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/1134144#M112566</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;it is better to use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at line-selection.
&amp;lt;b&amp;gt;get cursor field &amp;lt;fld&amp;gt; value &amp;lt;val&amp;gt;&amp;lt;/b&amp;gt;

if fld = 'ITAB-FIELD'.
"DO SOME THING..
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;VIJAY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134144#M112566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134145#M112567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Manish,&lt;/P&gt;&lt;P&gt;           HIDE Statement is generally used in write statements it is not used in AT-LINE-SELECTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134145#M112567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134146#M112568</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;browse this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through use it according to ur requirements needs.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;padma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134146#M112568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134147#M112569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Manish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both has it own advantages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read Line can be useful if you want some specific lines values want to be stored you implemenmt some logic using read statement. Even Read statement can store the values in Hide statement to their respective variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement assigns the content of a row stored in the list buffer to the system field sy-lisel, and allows other target fields to be specified in result. In addition, all values for this row stored with HIDE are assigned to the respective variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The row to be read is specified with the addition LINE or with CURRENT LINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE dobj. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This statement stores - in the current list level - the content of the variable dobj together with the current list line whose line number is contained in sy-linno. The data type of the variables dobj must be flat and no field symbols can be specified that point to rows of internal tables, and no class attributes can be specified. The stored values can be read as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each user action in a displayed screen list that leads to a list result, all the row values stored using HIDE - that is, the row on which the screen cursor is positioned at the time of the event - are assigned to the respective variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a list row of an arbitrary list level is read or modified using the statements READ LINE or MODIFY LINE, all the values of this row stored using HIDE are assigned to the respective variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;for a simple interactive report you can use HIDE statement.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:17:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134147#M112569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134148#M112570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.You can think of the HIDE area as a table, in which the system stores the names and values of&lt;/P&gt;&lt;P&gt;all HIDE fields for each list and line number. As soon as they are needed, the system reads the&lt;/P&gt;&lt;P&gt;values from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.To read a line from a list after an interactive list event, the READ LINE statement is used..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.As far as SY-LISEL and the HIDE area are&lt;/P&gt;&lt;P&gt;concerned, READ LINE has the same effect as an interactive line selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 06:40:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134148#M112570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T06:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134149#M112571</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;HIDE IS THE FUNDAMENTAL STATEMENT IN THE INTERACTIVE REPORTING USED FOR CREATING BASIC LIST&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;  THIS STATEMENT PLACE THE CONTENTS OF THE VARIABLE &amp;lt;f&amp;gt; FOR THE CURRENT OUTPUT LINE INTO THE HIDE AREA.&lt;/P&gt;&lt;P&gt;THUS &amp;lt;u&amp;gt;HIDE&amp;lt;/u&amp;gt; IS USED TO GET LINE SPECIFIC INFORMATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE IS USED TO READ THE DATA FROM THE LINES OF EXISTING LIST LEVELS. TO READ A LINE FROM A LIST AFTER AN INTERACTIVE LIST EVENT, USE THE &amp;lt;u&amp;gt;READ LINE&amp;lt;/u&amp;gt; STATEMENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this finds useful please reward points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;ANOOP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134149#M112571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: INTERACTIVE REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134150#M112572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement places the contents of the variable &amp;lt;f&amp;gt; for the current output line (system field SY-LINNO) into the HIDE area. The variable &amp;lt;f&amp;gt; must not necessarily appear on the current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make your program more readable, always place the HIDE statement directly after the output statement for the variable &amp;lt;f&amp;gt; or after the last output statement for the current line&lt;/P&gt;&lt;P&gt;READ LINE:&lt;/P&gt;&lt;P&gt;All of the lists generated by a single program are stored internally in the system. You can therefore access any list in a program that was created for the same screen and that has not yet been deleted by returning to a lower list level. To read lines, use the statements READ LINE and READ CURRENT LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read a line from a list after an interactive list event, use the READ LINE statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE &amp;lt;lin&amp;gt; [INDEX &amp;lt;idx&amp;gt;]&lt;/P&gt;&lt;P&gt;[FIELD VALUE &amp;lt;f1&amp;gt; [INTO &amp;lt;g 1&amp;gt;] ... &amp;lt;f n&amp;gt; [INTO &amp;lt;g n&amp;gt;]] &lt;/P&gt;&lt;P&gt;[OF CURRENT PAGE|OF PAGE &amp;lt;p&amp;gt;].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1134150#M112572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:27:21Z</dc:date>
    </item>
  </channel>
</rss>

