<?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 ALVs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445203#M547612</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while building the fieldcatlog you can use no_output  'X' to hide the columns in output, as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT FIELDCAT INTO W_FIELDCAT.&lt;/P&gt;&lt;P&gt;CASE W_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;WHEN 'COLUMN_NAME1'.&lt;/P&gt;&lt;P&gt;W_FIELDCAT-NO_OUTPUT = 'X'.&lt;/P&gt;&lt;P&gt;MODIFY FIELDCAT FROM W_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'COLUMN_NAME2'.&lt;/P&gt;&lt;P&gt;W_FIELDCAT-NO_OUTPUT = 'X'.&lt;/P&gt;&lt;P&gt;MODIFY FIELDCAT FROM W_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points.. if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 Jun 2007 13:09:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-30T13:09:31Z</dc:date>
    <item>
      <title>Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445198#M547607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        My requirement is &amp;lt;b&amp;gt;' a report has 100 fields and among those i need to hide all but specific 10 fields in output using ALVs&amp;lt;/b&amp;gt;'   please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 10:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445198#M547607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-30T10:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445199#M547608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ALV only display those fields which are there in Fieldcatalog.&lt;/P&gt;&lt;P&gt;So dont pass those 90 fields and they will not get display.&lt;/P&gt;&lt;P&gt;But if you want to display all and then hide, then create a layout variant for it save it and use it as Default variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 10:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445199#M547608</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-06-30T10:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445200#M547609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u give me example coading for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 11:36:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445200#M547609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-30T11:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445201#M547610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Have a look at the below ALV Programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BCALV_GRID_01&lt;/P&gt;&lt;P&gt;BCALV_GRID_02&lt;/P&gt;&lt;P&gt;BCALV_GRID_03&lt;/P&gt;&lt;P&gt;BCALV_GRID_04&lt;/P&gt;&lt;P&gt;BCALV_GRID_05&lt;/P&gt;&lt;P&gt;BCALV_GRID_06&lt;/P&gt;&lt;P&gt;BCALV_GRID_07&lt;/P&gt;&lt;P&gt;BCALV_GRID_08&lt;/P&gt;&lt;P&gt;BCALV_GRID_09&lt;/P&gt;&lt;P&gt;BCALV_GRID_10&lt;/P&gt;&lt;P&gt;BCALV_GRID_11&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark all useful answers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 11:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445201#M547610</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-06-30T11:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445202#M547611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set the value of the field &amp;lt;b&amp;gt;NO_OUT&amp;lt;/b&amp;gt; to 'X' in the field catalog, for the columns that are to be hidden.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 11:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445202#M547611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-30T11:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445203#M547612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while building the fieldcatlog you can use no_output  'X' to hide the columns in output, as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT FIELDCAT INTO W_FIELDCAT.&lt;/P&gt;&lt;P&gt;CASE W_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;WHEN 'COLUMN_NAME1'.&lt;/P&gt;&lt;P&gt;W_FIELDCAT-NO_OUTPUT = 'X'.&lt;/P&gt;&lt;P&gt;MODIFY FIELDCAT FROM W_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'COLUMN_NAME2'.&lt;/P&gt;&lt;P&gt;W_FIELDCAT-NO_OUTPUT = 'X'.&lt;/P&gt;&lt;P&gt;MODIFY FIELDCAT FROM W_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points.. if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2007 13:09:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alvs/m-p/2445203#M547612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-30T13:09:31Z</dc:date>
    </item>
  </channel>
</rss>

