<?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: how to hide selection fields when using logical database PNP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932807#M1150693</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tahir,&lt;/P&gt;&lt;P&gt;Go into the Report Category (Prog attributes -&amp;gt; HR Report Category -&amp;gt; Find Report Category). On the right-hand side of your report category, you could see "Allowable selection screens". Doublle click that. You can either remove the unwanted fields or uncheck the checkbox next to it. Note - If you dont want to display the entire block in ur selection screen, remove all fields..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Dec 2008 19:14:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-14T19:14:54Z</dc:date>
    <item>
      <title>how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932800#M1150686</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 m using a logical database PNP and report catagory 1PY_DEF in my program.&lt;/P&gt;&lt;P&gt;but when i execute it , it shows to selection box. one name is period and second is selections.&lt;/P&gt;&lt;P&gt;but i just want to show only period box selection fields , not the selection box fields.&lt;/P&gt;&lt;P&gt;how it iz possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 07:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932800#M1150686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T07:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932801#M1150687</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;In my case i haved used the PNP logical database..in the selection box i don't wnat to display Contorling area,Cost Center &amp;amp; Organizational Unit. i have written this code to hide those fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name CS 'PNPKOKRS' OR&lt;/P&gt;&lt;P&gt;       screen-name CS 'PNPKOSTL' OR&lt;/P&gt;&lt;P&gt;       screen-name CS 'PNPORGEH'.&lt;/P&gt;&lt;P&gt;      screen-active = '0'.&lt;/P&gt;&lt;P&gt;      screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CLEAR screen.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try modify hide the total block instead of individual fields in that block.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 07:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932801#M1150687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T07:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932802#M1150688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi brother.&lt;/P&gt;&lt;P&gt;ur code is not even hiding those fields which u have written. i.e cost center....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 07:44:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932802#M1150688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T07:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932803#M1150689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;In the attributes of program you can assign existing HR report category or create new&lt;/P&gt;&lt;P&gt;one to assign it later to your report. So you can customize selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 07:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932803#M1150689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T07:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932804#M1150690</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;That is working properly in my program. Check the Field names are properly. i'm using X__00002 in the report catageory...&amp;amp; selected the Master Data radio button. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have set the variants for the selection screen before making changes. And after making the changes then if you select these varinats then the hidded fields will be displayed so you need to create the new variants after changing the selection screen,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 08:05:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932804#M1150690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T08:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932805#M1150691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi avinash:&lt;/P&gt;&lt;P&gt;it is properly working when i used te logical database pnp and screen no 000 and report catagory X__00002.&lt;/P&gt;&lt;P&gt;but i m using screen no 900 and report catagory which i described above... ten the code does not work...&lt;/P&gt;&lt;P&gt;plz just tell me how we can came to know that these fields contain wat screen-name.&lt;/P&gt;&lt;P&gt;meanz how u came to know &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-name CS 'PNPKOKRS' &lt;/P&gt;&lt;P&gt;screen-name CS 'PNPKOSTL'&lt;/P&gt;&lt;P&gt;screen-name CS 'PNPORGEH'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; so that i can get the remaining fields or how i can get te block name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanking in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 08:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932805#M1150691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T08:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932806#M1150692</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;press F1 on the fields in the selection screen and in the &lt;STRONG&gt;Technical information&lt;/STRONG&gt; read the &lt;STRONG&gt;Screen Field&lt;/STRONG&gt; value... just consider the PNPKOKRS not the LOW or HIGH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 08:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932806#M1150692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T08:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection fields when using logical database PNP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932807#M1150693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tahir,&lt;/P&gt;&lt;P&gt;Go into the Report Category (Prog attributes -&amp;gt; HR Report Category -&amp;gt; Find Report Category). On the right-hand side of your report category, you could see "Allowable selection screens". Doublle click that. You can either remove the unwanted fields or uncheck the checkbox next to it. Note - If you dont want to display the entire block in ur selection screen, remove all fields..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2008 19:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-fields-when-using-logical-database-pnp/m-p/4932807#M1150693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-14T19:14:54Z</dc:date>
    </item>
  </channel>
</rss>

