<?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 sys field for hide in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761463#M904927</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we use hide statement then which system field stores the value for that selection .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 Apr 2008 10:56:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-27T10:56:04Z</dc:date>
    <item>
      <title>sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761463#M904927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we use hide statement then which system field stores the value for that selection .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 10:56:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761463#M904927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-27T10:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761464#M904928</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;The values of the selected line are stored in fields with the same name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / itab-f1,  itab-f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hide: itab-f1, itab-f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selected line values are taken from the work area of itab. and are with the same name To process the field values we have to take itab-f1, itab-f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 11:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761464#M904928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-27T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761465#M904929</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 statement stores contents of variable &amp;lt;f&amp;gt; in relation to the current output line (system field sy-linno) internally in the so-called 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;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 11:06:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761465#M904929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-27T11:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761466#M904930</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;See this ample pgm. You will get clear idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report zsha_1.

data: begin of itab occurs 0,
field type c,
end of itab.

itab-field = 'A'. append itab.
itab-field = 'B'. append itab.
itab-field = 'C'. append itab.
itab-field = 'D'. append itab.
itab-field = 'E'. append itab.


loop at itab.

format hotspot on.
write:/ itab-field.
hide itab-field.
format hotspot off.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 11:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761466#M904930</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2008-04-27T11:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761467#M904931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhupi,&lt;/P&gt;&lt;P&gt;When u use hide statement and click on the output list then What ever fields u are hiding all those field data will be filled to work area of the output internal table. There is one system field&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY_LISEL&lt;/STRONG&gt; which will store the whole line on which u clicked. But not only the hided fields. this variable will return the line content as a string(Including vertival lines(sy-vline) if any in ur output list).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other usefull variables:&lt;/P&gt;&lt;P&gt;sy-lsind -List index&lt;/P&gt;&lt;P&gt;sy-curow- Current row of cursor position&lt;/P&gt;&lt;P&gt;sy-colno-  Current column of cursor position&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 13:18:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761467#M904931</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-27T13:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: sys field for hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761468#M904932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;Bapu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     There is no system field to hide some fields.but, hide is one of the way to hide field from displaying in the report.but, it is not system field. Already , in the early replies to ur questions, some of them explain hide with example.This is for furthur clarification to u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it useful, reward points.&lt;/P&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;&lt;P&gt;Thank u,&lt;/P&gt;&lt;P&gt;Prasad G.V.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2008 14:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sys-field-for-hide/m-p/3761468#M904932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-27T14:30:32Z</dc:date>
    </item>
  </channel>
</rss>

