<?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 text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070162#M1613493</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK 001 WITH FRAME TITLE text-001.
PARAMETERS: p_ras1(4) TYPE n DEFAULT '0031'.
PARAMETERS: p_ras2(4) TYPE n DEFAULT '0062'.
PARAMETERS: p_ras3(4) TYPE n DEFAULT '0093'.
PARAMETERS: p_ras4(4) TYPE n DEFAULT '0000'.
PARAMETERS: p_ras5(4) TYPE n DEFAULT '0000'.
SELECTION-SCREEN END OF BLOCK 001.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And look what happens to frame and title when every parameter is hidden in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jul 2011 10:05:44 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2011-07-29T10:05:44Z</dc:date>
    <item>
      <title>how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070157#M1613488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have the following selection screen definitions: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN COMMENT 01(33) text-001.

PARAMETERS: p_ras1(4) TYPE n DEFAULT '0031'.                
PARAMETERS: p_ras2(4) TYPE n DEFAULT '0062'.
PARAMETERS: p_ras3(4) TYPE n DEFAULT '0093'.
PARAMETERS: p_ras4(4) TYPE n DEFAULT '0000'.
PARAMETERS: p_ras5(4) TYPE n DEFAULT '0000'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in a variant i hide the 5 parameters for the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the text-001 is still displayed. so i only have the text there. how can i hide the text-001 for a specific variant. i can't do it in the variant itself, i have to do it in my z-program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 08:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070157#M1613488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-29T08:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070158#M1613489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use variable SY-SLSET.(Used Selection Screen Variant )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 08:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070158#M1613489</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2011-07-29T08:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070159#M1613490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, i know that i can use SY-SLSET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but HOW can i hide the text ??????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 08:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070159#M1613490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-29T08:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070160#M1613491</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 am not sure if this helps or not, but if you can identify the screen field name for the text, you can modify the screen structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-slset = &amp;lt;variant-name&amp;gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;IF screen-fieldname = 'TEXT'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sap_wiz on Jul 29, 2011 2:45 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 09:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070160#M1613491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-29T09:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070161#M1613492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm. I thought if i give the variable you can just build the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway you got the logic also now. &lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 09:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070161#M1613492</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2011-07-29T09:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to hide selection text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070162#M1613493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK 001 WITH FRAME TITLE text-001.
PARAMETERS: p_ras1(4) TYPE n DEFAULT '0031'.
PARAMETERS: p_ras2(4) TYPE n DEFAULT '0062'.
PARAMETERS: p_ras3(4) TYPE n DEFAULT '0093'.
PARAMETERS: p_ras4(4) TYPE n DEFAULT '0000'.
PARAMETERS: p_ras5(4) TYPE n DEFAULT '0000'.
SELECTION-SCREEN END OF BLOCK 001.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And look what happens to frame and title when every parameter is hidden in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 10:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-selection-text/m-p/8070162#M1613493</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2011-07-29T10:05:44Z</dc:date>
    </item>
  </channel>
</rss>

