<?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: sy-ucomm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010022#M711329</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;when i click on a particular material number and click on the button "change material" it will go to the transaction code MMO2...But when i double  click it nothing will happen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is when i double click on the material number it will go to the transaction code MM02 which is wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you....&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;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Nov 2007 15:19:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-05T15:19:42Z</dc:date>
    <item>
      <title>sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010018#M711325</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 have a program that will go to a transaction code MM02 when a button is click...But when i double click on the material number the value of the sy-ucomm is equal to the MM02, and will go to the transaction MM02 which is wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i change the value of sy-ucomm to DISPLAY?&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010018#M711325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T15:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010019#M711326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;post your user command code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010019#M711326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T15:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010020#M711327</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;here's my user command code:&lt;/P&gt;&lt;P&gt;the problem is when i double click on the material number the it will go to the transaction MM02..which is wrong...the correct one is when you double click on the values in the table nothing will happen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&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 c_mm03.&lt;/P&gt;&lt;P&gt;      g_matnr = sy-lisel+2(8).&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID c_mat FIELD g_matnr.&lt;/P&gt;&lt;P&gt;      IF g_matnr IS INITIAL.&lt;/P&gt;&lt;P&gt;        MESSAGE e021 WITH text-024.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION c_mm03 AND SKIP FIRST SCREEN.   "#EC CI_CALLTA&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;*standar sy-subrc check&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN c_mm02.&lt;/P&gt;&lt;P&gt;      g_matnr = sy-lisel+2(8).&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID c_mat FIELD g_matnr.&lt;/P&gt;&lt;P&gt;      IF g_matnr IS INITIAL.&lt;/P&gt;&lt;P&gt;        MESSAGE e021 WITH text-024.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION c_mm02 AND SKIP FIRST SCREEN.   "#EC CI_CALLTA&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;          PERFORM f_print_selection_screen.&lt;/P&gt;&lt;P&gt;          WAIT UP TO 2 SECONDS.&lt;/P&gt;&lt;P&gt;          SUBMIT z2mak32075_mrp_alignment WITH SELECTION-TABLE i_select AND RETURN."#EC *&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN c_cs03.&lt;/P&gt;&lt;P&gt;      g_matnr = sy-lisel+2(8).&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID: c_mat FIELD g_matnr,&lt;/P&gt;&lt;P&gt;                        c_bom FIELD p_stlan,&lt;/P&gt;&lt;P&gt;                        c_wrk FIELD p_werks.&lt;/P&gt;&lt;P&gt;      IF g_matnr IS INITIAL.&lt;/P&gt;&lt;P&gt;        MESSAGE e021 WITH text-024.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION c_cs03 AND SKIP FIRST SCREEN.   "#EC CI_CALLTA&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;*standar sy-subrc check&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK'  .&lt;/P&gt;&lt;P&gt;      LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;    WHEN OTHERS.&lt;/P&gt;&lt;P&gt;      LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010020#M711327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T15:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010021#M711328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly is your requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want to Click on the Material number and goto the transaction in Display mode ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call the Transaction MM03 instead of MM02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of SY-UCOMM when you double click on the material number in your report is coming as MM02 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the value of sy-ucomm in your GUI Status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010021#M711328</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-05T15:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010022#M711329</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;when i click on a particular material number and click on the button "change material" it will go to the transaction code MMO2...But when i double  click it nothing will happen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is when i double click on the material number it will go to the transaction code MM02 which is wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you....&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;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:19:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010022#M711329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T15:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010023#M711330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the User Command assigned to the Function Key F2. It should not be MM02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010023#M711330</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-05T15:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010024#M711331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Mae,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Double Click to work, u have ti implement AT LINE SELECTION EVENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope u have just implemented AT USER COMMAND Event.&lt;/P&gt;&lt;P&gt;Do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION .&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD w_matnr.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While displaying the internal table contents, use HIDE command to pass values for AT LINE SELECTION Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba3ae35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba3ae35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if useful........&lt;/P&gt;&lt;P&gt;Harimanjesh AN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:38:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010024#M711331</guid>
      <dc:creator>harimanjesh_an</dc:creator>
      <dc:date>2007-11-05T15:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: sy-ucomm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010025#M711332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mae,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;There is an atribute in tab Display in the layout of your dynpro that you have to check. The atribute is: Responds to double-click&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;FC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 15:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-ucomm/m-p/3010025#M711332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T15:40:51Z</dc:date>
    </item>
  </channel>
</rss>

