<?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: selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578769#M589538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to set Pf-status by using the statement "set pf-status 'UI' " in your normal program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By double clicking on UI you will enter into some other window calld user interface.&lt;/P&gt;&lt;P&gt;There u can find three fields&lt;/P&gt;&lt;P&gt;1. Menu bar&lt;/P&gt;&lt;P&gt;2.Application tool bar&lt;/P&gt;&lt;P&gt;3.functional Keys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using menu bar u can create Menu bar tabs&lt;/P&gt;&lt;P&gt;In functional keys u can assign ur self defined function code to function keys.&lt;/P&gt;&lt;P&gt;In application tool bar u can add  tool bar buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2007 06:26:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-02T06:26:06Z</dc:date>
    <item>
      <title>selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578764#M589533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please tell me how to add toolbar buttons on selection scrren.&lt;/P&gt;&lt;P&gt;Helpful answers will be rewarded&lt;/P&gt;&lt;P&gt;thnkx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578764#M589533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578765#M589534</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;Firs add reference to screen fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: SSCRFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can activate 1-4 function keys by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then describe the function keys in LOAD-OF-PROGRAM or INITIALIZATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA smp_dyntxt TYPE smp_dyntxt.&lt;/P&gt;&lt;P&gt;CLEAR smp_dyntxt.&lt;/P&gt;&lt;P&gt;smp_dyntxt-text = text-t01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-icon_id = '@GX@'.&lt;/P&gt;&lt;P&gt;smp_dyntxt-icon_text = text-i01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-quickinfo = text-q01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-path = 'T'.&lt;/P&gt;&lt;P&gt;sscrfields-functxt_01 = smp_dyntxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An then you check usage in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'FC01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578765#M589534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578766#M589535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the reprot :demo_sel_screen_function_key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578766#M589535</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-08-02T06:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578767#M589536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: d_butt1(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_grpa1(10) MODIF ID A,&lt;/P&gt;&lt;P&gt;p_grpa2(10) MODIF ID A,&lt;/P&gt;&lt;P&gt;p_grpb1(10) MODIF ID B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;MOVE 'This is button one' TO sscrfields-functxt_01.&lt;/P&gt;&lt;P&gt;MOVE 'This is button two' TO sscrfields-functxt_02.&lt;/P&gt;&lt;P&gt;d_butt1 = 'NO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;IF sy-ucomm = 'FC01'.&lt;/P&gt;&lt;P&gt;d_butt1 = 'YES'.&lt;/P&gt;&lt;P&gt;sscrfields-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;ELSEIF sy-ucomm = 'FC02'.&lt;/P&gt;&lt;P&gt;IF sscrfields-functxt_02 = 'Toggle 1'.&lt;/P&gt;&lt;P&gt;sscrfields-functxt_02 = 'Toggle 2'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;sscrfields-functxt_02 = 'Toggle 1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;WRITE d_butt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx neerja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:13:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578767#M589536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578768#M589537</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;You need to create the same in pf-status of the program transaction se41.&lt;/P&gt;&lt;P&gt;You would code it in ur program like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when &amp;lt;ur button's func code&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt; logic&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it helped, you can acknowledge the same by rewarding &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;dinesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578768#M589537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578769#M589538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to set Pf-status by using the statement "set pf-status 'UI' " in your normal program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By double clicking on UI you will enter into some other window calld user interface.&lt;/P&gt;&lt;P&gt;There u can find three fields&lt;/P&gt;&lt;P&gt;1. Menu bar&lt;/P&gt;&lt;P&gt;2.Application tool bar&lt;/P&gt;&lt;P&gt;3.functional Keys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using menu bar u can create Menu bar tabs&lt;/P&gt;&lt;P&gt;In functional keys u can assign ur self defined function code to function keys.&lt;/P&gt;&lt;P&gt;In application tool bar u can add  tool bar buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:26:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578769#M589538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578770#M589539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omkaram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also use for button "selection-screen function key" in my program. its working fine. I have three button in my screen display, delete and update. what i want update button invisible mode or hide somthing when my report loded and when i click on display button then update button comes on visible mode........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible........................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 23:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2578770#M589539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T23:27:51Z</dc:date>
    </item>
  </channel>
</rss>

