<?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: Problem in SET parameter id for MB23 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298217#M1390799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Soooooooooo....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be clear when you post a question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Oct 2009 16:55:04 GMT</pubDate>
    <dc:creator>former_member191735</dc:creator>
    <dc:date>2009-10-28T16:55:04Z</dc:date>
    <item>
      <title>Problem in SET parameter id for MB23</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298213#M1390795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created ALV by using function module REUSE_ALV_GRID_DISPLAY.&lt;/P&gt;&lt;P&gt;I have to navigate the screen from report to &lt;STRONG&gt;MB23&lt;/STRONG&gt; whenever user click on field &lt;STRONG&gt;RSNUM&lt;/STRONG&gt; .i found &lt;STRONG&gt;SET&lt;/STRONG&gt; &lt;STRONG&gt;ID&lt;/STRONG&gt; as &lt;STRONG&gt;RES&lt;/STRONG&gt; by F1 help of that field.&lt;/P&gt;&lt;P&gt;My problem is screen is not navigate to MB23.i kept break-point in side of FORM but FORM itself is not triggering while click on field RSNUM from report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program      = v_alv_repid&lt;/P&gt;&lt;P&gt;      i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;      is_layout               = layout&lt;/P&gt;&lt;P&gt;      it_fieldcat             = it_fieldcat&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab                = it_report1[]&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      program_error           = 1&lt;/P&gt;&lt;P&gt;      OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING ucomm TYPE sy-ucomm&lt;/P&gt;&lt;P&gt;                    selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;  BREAK-POINT.&lt;/P&gt;&lt;P&gt;  CASE ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      IF selfield-fieldname = 'RSNUM'.&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID 'RES'  FIELD selfield-value.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'MB23' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me resolve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jay J on Oct 28, 2009 4:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 15:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298213#M1390795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T15:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in SET parameter id for MB23</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298214#M1390796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;After executing the alv report, write /H in the command field and then try to double click the field and see where the debugger takes you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                  rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check function code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CASE r_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;call transaction,&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code should work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 16:24:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298214#M1390796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T16:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in SET parameter id for MB23</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298215#M1390797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;prepare call transaction FD33 via hotspot or double-click&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  events-name = 'USER_COMMAND'.&lt;/P&gt;&lt;P&gt;  events-form = 'USER_COMMAND'.&lt;/P&gt;&lt;P&gt;  append events to tab_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      i_callback_program = sy-repid&lt;/P&gt;&lt;P&gt;      is_layout          = layout&lt;/P&gt;&lt;P&gt;      it_fieldcat        = fieldcat&lt;/P&gt;&lt;P&gt;      it_events          = tab_events&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      t_outtab           = outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form user_command using us_ucomm like sy-ucomm&lt;/P&gt;&lt;P&gt;                        us_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;you can now use case on us_ucomm the put a break point and see what will be the value of US_UCOMM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that your field has hyperlink or hotspot (the field whatever you want to use to click)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use double click option.... Please see this standard SAP report RFBUEB00. sorry there may be a better demo program but i have recently visited this program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check line 184 for perform grid_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There you can follow other things i mean what need to pass and all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 16:42:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298215#M1390797</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-10-28T16:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in SET parameter id for MB23</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298216#M1390798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI All.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got solution myself.&lt;/P&gt;&lt;P&gt;I got problem Beasue program defination in FM .I hard coded my program name its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for All.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 16:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298216#M1390798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T16:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in SET parameter id for MB23</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298217#M1390799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Soooooooooo....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be clear when you post a question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 16:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-set-parameter-id-for-mb23/m-p/6298217#M1390799</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-10-28T16:55:04Z</dc:date>
    </item>
  </channel>
</rss>

