<?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 SSCRFIELDS-UCOMM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657181#M612759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap experts,&lt;/P&gt;&lt;P&gt;I have set a button on the toolbar, however I could not code it.&lt;/P&gt;&lt;P&gt;When clicked on I want to redirect the user to another screen with , for example,call screen 100.&lt;/P&gt;&lt;P&gt;How can I code the function.&lt;/P&gt;&lt;P&gt;Should I use case endcase.&lt;/P&gt;&lt;P&gt;Sample code please.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Aug 2007 08:35:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-17T08:35:17Z</dc:date>
    <item>
      <title>SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657181#M612759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap experts,&lt;/P&gt;&lt;P&gt;I have set a button on the toolbar, however I could not code it.&lt;/P&gt;&lt;P&gt;When clicked on I want to redirect the user to another screen with , for example,call screen 100.&lt;/P&gt;&lt;P&gt;How can I code the function.&lt;/P&gt;&lt;P&gt;Should I use case endcase.&lt;/P&gt;&lt;P&gt;Sample code please.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 08:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657181#M612759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-17T08:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657182#M612760</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 code the same logic as follows: assuming ok_code of type sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when &amp;lt; function code for the button&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen &amp;lt;screen which you want to call&amp;gt;&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;Hope this helps&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;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;swati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 08:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657182#M612760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-17T08:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657183#M612761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;if it is a module pool then&lt;/P&gt;&lt;P&gt;write the following in pai event of the particular scrrren.&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 'your function code ' in caps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;when 'OTHERS'.&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;if it is an alv then &lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING PV_UCOMM LIKE SY-UCOMM              "#EC NEEDED&lt;/P&gt;&lt;P&gt;                        SELFIELD TYPE SLIS_SELFIELD.        "#EC NEEDED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CASE PV_UCOMM.&lt;/P&gt;&lt;P&gt;when ' your code'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 100.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use the user_command in you alv functiion module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 08:41:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657183#M612761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-17T08:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657184#M612762</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;This is the Code that works for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zselfile1 .&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;**Create the Additional Selection screen to input filename&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF SCREEN 10.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF SCREEN 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Create Application Toolbar Button on the Standard selection Screen&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1. "Its fcode will be FC01&lt;/P&gt;&lt;P&gt;PARAMETERS : p_werks TYPE marc-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;sscrfields-functxt_01 = 'Enter File'. "Assign the Text to the Button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sscrfields-ucomm. "Check the Fcode&lt;/P&gt;&lt;P&gt;WHEN 'FC01'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 10 STARTING AT 5 8 ENDING AT 85 20.&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;&amp;lt;b&amp;gt;Reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 08:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657184#M612762</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-17T08:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657185#M612763</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;try this way out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[code] &lt;/P&gt;&lt;P&gt;TABLES SSCRFIELDS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'CLI1'.  " code for display.&lt;/P&gt;&lt;P&gt;      CLEAR SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;      CALL SCREEN 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'CLI2'. " code for maintain.&lt;/P&gt;&lt;P&gt;      CLEAR SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;      CALL SCREEN 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when others.&lt;/P&gt;&lt;P&gt;&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;/code]&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;Thanks, &lt;/P&gt;&lt;P&gt;Madhura&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 09:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657185#M612763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-17T09:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: SSCRFIELDS-UCOMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657186#M612764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/54/3d372c9705ae44b6c028858bfbd71f/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/54/3d372c9705ae44b6c028858bfbd71f/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 09:13:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sscrfields-ucomm/m-p/2657186#M612764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-17T09:13:53Z</dc:date>
    </item>
  </channel>
</rss>

