<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897266#M374953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)I dnt think that it is stored in any DDIC table. It is just temporarily stored in the memory area.&lt;/P&gt;&lt;P&gt;Read below info provided by SAP.&lt;/P&gt;&lt;P&gt;As soon as the user selects a line for which you stored HIDE fields, the system fills the variables in the program with the values stored.&lt;/P&gt;&lt;P&gt;You can think of the HIDE area as a table, in which the system stores the names and values of all HIDE fields for each list and line number. As soon as they are needed, the system reads the values from the table.&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;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) ya  u can use fm read_text   store text to variable and  write  this  variable  where u want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Feb 2007 05:21:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-06T05:21:30Z</dc:date>
    <item>
      <title>hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897265#M374952</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; can any one clarify these doubts.&lt;/P&gt;&lt;P&gt;1.will the hide statement support deep structures ? in which table hide statement stores data? &lt;/P&gt;&lt;P&gt;2. is it possible to include the standard text in classical reports ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897265#M374952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897266#M374953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)I dnt think that it is stored in any DDIC table. It is just temporarily stored in the memory area.&lt;/P&gt;&lt;P&gt;Read below info provided by SAP.&lt;/P&gt;&lt;P&gt;As soon as the user selects a line for which you stored HIDE fields, the system fills the variables in the program with the values stored.&lt;/P&gt;&lt;P&gt;You can think of the HIDE area as a table, in which the system stores the names and values of all HIDE fields for each list and line number. As soon as they are needed, the system reads the values from the table.&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;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) ya  u can use fm read_text   store text to variable and  write  this  variable  where u want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:21:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897266#M374953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897267#M374954</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;1) Yes..Hide supports deep structures..Example mentioned below..ALso the hidden values are not stored in the tables..I believe it will be stored in a memory..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF wa,&lt;/P&gt;&lt;P&gt;       material TYPE mara,&lt;/P&gt;&lt;P&gt;      END OF wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-material-matnr = 'MATERIAL1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: wa-material-matnr.&lt;/P&gt;&lt;P&gt;HIDE wa-material-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR:wa-material-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: / wa-material-matnr.&lt;/P&gt;&lt;P&gt;  CLEAR: wa-material-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You cannot directly use INCLUDE statement like you do it in sap script..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead you can call the FM READ_TEXT to get the text and print..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897267#M374954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897268#M374955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You use the HIDE technique while creating a list level to store line-specific information for later use. As for as my knowledge this should be support Deep structures also.&lt;/P&gt;&lt;P&gt;You can think of the HIDE area as a table, in which the system stores the names and values of all HIDE fields for each list and line number. As soon as they are needed, the system reads the values from the table.There is no such table to store this values permanently. the HIDE area will contain the values while runing the Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you can write the Standard text in the Classical report. when you click a field, get the value based on GET CURSOR, then use the READ_TEXT and put the text in a internal table and display it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897268#M374955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897269#M374956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify this doubt also.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to insert logo in a classical report ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897269#M374956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897270#M374957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i  think in simple report deffinatly  it  have   some  gud  technicue . but  if  u  do coding abap-oops than it is  possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897270#M374957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897271#M374958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kishan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur prompt reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u please tell me the procedure to insert logo in classical report ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:57:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897271#M374958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897272#M374959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check out this sap example &amp;lt;b&amp;gt;sap_picture_demo&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 05:59:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897272#M374959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T05:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897273#M374960</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;I believe you cannot insert logo in classical report..But you can in ALV GRID..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 06:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/1897273#M374960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T06:00:57Z</dc:date>
    </item>
  </channel>
</rss>

