<?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: Hide statement in reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847207#M45496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go thru the sap help for Hide statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt; Jitendar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 May 2005 09:55:06 GMT</pubDate>
    <dc:creator>former_member222875</dc:creator>
    <dc:date>2005-05-19T09:55:06Z</dc:date>
    <item>
      <title>Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847204#M45493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abapers,&lt;/P&gt;&lt;P&gt;   for several days i am searching for material for HIDE statement that we use in reporting to get a detail list of particular field in secondary list.could any one have please forward me.thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847204#M45493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T09:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847205#M45494</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;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/example_code.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/example_code.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/hide.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/hide.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847205#M45494</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-19T09:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847206#M45495</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;&lt;/P&gt;&lt;P&gt;Creating a secondary list&lt;/P&gt;&lt;P&gt;The user can, for example, select a line of the basic list for which he wants to see more detailed information. You display these details on a secondary list.&lt;/P&gt;&lt;P&gt;This method requires that you have previously stored the contents of the selected line from within the program. &lt;/P&gt;&lt;P&gt;To do this, &amp;lt;b&amp;gt;ABAP/4 provides the HIDE statement. This statement stores the current field contents for the current list line. When calling a secondary list form a list line for which the HIDE fields are stored, the system fills the stored values back into the variables in the program.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;In the program code, insert the HIDE statement directly after the WRITE statement for the current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE: WA-CONNID, WA-CARRID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement tells the system to store the fields WA-CONNID and WA-CARRID and to place their contents back into the fields on a secondary list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to the HIDE statement you need an event that occurs as soon as the user selects a line. The event keyword for double-clicking the mouse is AT LINE-SELECTION. Pressing function key F2 or entering function code PICK also trigger this event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check this link where i got this info&lt;/P&gt;&lt;P&gt;&lt;A href="http://membres.lycos.fr/jolyeric/SAP/Note_de_Cours_Ben/Reporting/2_aide_sap_Tutorial_REPORT.doc" target="test_blank"&gt;http://membres.lycos.fr/jolyeric/SAP/Note_de_Cours_Ben/Reporting/2_aide_sap_Tutorial_REPORT.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALSO&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;HIDE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stores information about list lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During list creation, this statement stores the contents of the field &amp;lt;f&amp;gt; and the current line number in the internal HIDE area. When the cursor is positioned on a line in an interactive list event, the stored value is returned to the field &amp;lt;f&amp;gt;.&amp;lt;/b&amp;gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847206#M45495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T09:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847207#M45496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go thru the sap help for Hide statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt; Jitendar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847207#M45496</guid>
      <dc:creator>former_member222875</dc:creator>
      <dc:date>2005-05-19T09:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847208#M45497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;  I've already used HIDE statement, and I have found all the information I needed with the standard help system (F1 in any ABAP statement).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an example try to look report DEMO_LIST_HIDE&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;Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847208#M45497</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2005-05-19T09:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847209#M45498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all of u.&lt;/P&gt;&lt;P&gt;Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 10:01:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847209#M45498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T10:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statement in reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847210#M45499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward points for those helped u and close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 10:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement-in-reports/m-p/847210#M45499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T10:26:03Z</dc:date>
    </item>
  </channel>
</rss>

