<?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: Please see the code below ---&amp;gt;Event USER_COMMAND not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158256#M994143</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check whether u have register the event with ur ALV grid object or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HANDLER handler1 handler2 ... FOR oref|{ALL INSTANCES} &lt;/P&gt;&lt;P&gt;                                    [ACTIVATION act].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 05:17:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T05:17:28Z</dc:date>
    <item>
      <title>Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158255#M994142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created two buttons on the ALV toolbar and have written code on event USER_COMMAND.  &lt;/P&gt;&lt;P&gt;But when I click on the button the desired functionality is not working.  &lt;/P&gt;&lt;P&gt;Please check the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------------" /&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_alv_toolbar DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ALV event handler&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_alv_toolbar DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;*Constructor&lt;/P&gt;&lt;P&gt;    METHODS: constructor&lt;/P&gt;&lt;P&gt;               IMPORTING&lt;/P&gt;&lt;P&gt;                 io_alv_grid TYPE REF TO cl_gui_alv_grid,&lt;/P&gt;&lt;P&gt;*Event for toolbar&lt;/P&gt;&lt;P&gt;    on_toolbar&lt;/P&gt;&lt;P&gt;       FOR EVENT toolbar&lt;/P&gt;&lt;P&gt;       OF  cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         e_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHODS USER_COMMAND&lt;/P&gt;&lt;P&gt;FOR EVENT USER_COMMAND OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;IMPORTING E_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_alv_toolbar DEFINITION&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_alv_toolbar IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ALV event handler&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_alv_toolbar IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD constructor.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Create ALV toolbar manager instance&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT c_alv_toolbarmanager&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        io_alv_grid      = io_alv_grid.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "constructor&lt;/P&gt;&lt;P&gt;  METHOD on_toolbar.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Add customized toolbar buttons.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  variable for Toolbar Button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_toolbar-icon      =  icon_generate.&lt;/P&gt;&lt;P&gt;    t_toolbar-butn_type = 0.&lt;/P&gt;&lt;P&gt;    t_toolbar-text = 'UPDATE'.&lt;/P&gt;&lt;P&gt;    t_toolbar-function = text-009.&lt;/P&gt;&lt;P&gt;    APPEND t_toolbar TO e_object-&amp;gt;mt_toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_toolbar-icon      =  ICON_COLUMN_RIGHT.&lt;/P&gt;&lt;P&gt;    t_toolbar-butn_type = 0.&lt;/P&gt;&lt;P&gt;    t_toolbar-text = 'DISPLAY_LOG'.&lt;/P&gt;&lt;P&gt;    t_toolbar-function = text-010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND t_toolbar TO e_object-&amp;gt;mt_toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  Call reorganize method of toolbar manager to&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  display the toolbar&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD c_alv_toolbarmanager-&amp;gt;reorganize&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        io_alv_toolbar = e_object.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;METHOD USER_COMMAND.&lt;/P&gt;&lt;P&gt;PERFORM UPDATE USING E_UCOMM.&lt;/P&gt;&lt;P&gt;ENDMETHOD.                    "on_toolbar&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM UPDATE USING P_E_UCOMM TYPE sy-ucomm.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CASE sy-ucomm.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CASE P_E_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN text-009.&lt;/P&gt;&lt;P&gt;      PERFORM UPDATE_DATA.&lt;/P&gt;&lt;P&gt;    WHEN text-010.&lt;/P&gt;&lt;P&gt;      PERFORM DISPLAY_LOG.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 05:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158255#M994142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T05:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158256#M994143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check whether u have register the event with ur ALV grid object or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HANDLER handler1 handler2 ... FOR oref|{ALL INSTANCES} &lt;/P&gt;&lt;P&gt;                                    [ACTIVATION act].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 05:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158256#M994143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T05:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158257#M994144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heloo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For catching the events u need to set the handler &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HANDLER lcl_alv_toolbar =&amp;gt;USER_COMMAND FOR toolbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 05:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158257#M994144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T05:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158258#M994145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manisha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest you a few references which relate to your case,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN Wiki - Standard Reference for TOOLBAR &amp;amp; USER COMMAND in ALV|https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action?pageId=37715]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for code functionality for Buttons in ALV toolbar|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="732742"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for writing code functionality for two pushbuttons in Application toolbar in ALV &amp;amp; error in triggering of Event at user command|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="237473"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference for Error in Event User command during creation of push buttons in ALV|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="722480"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that's usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsh Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 05:30:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158258#M994145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T05:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158259#M994146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx Neerag M.&lt;/P&gt;&lt;P&gt;U solution worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 06:08:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158259#M994146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T06:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Please see the code below ---&gt;Event USER_COMMAND not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158260#M994147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI frnd ,&lt;/P&gt;&lt;P&gt;   JST TRY THIS SMALL CODE .&lt;/P&gt;&lt;P&gt;  REPORT  ZPRI_ALV8.&lt;/P&gt;&lt;P&gt;type-pools : slis .&lt;/P&gt;&lt;P&gt;data: v_repid like sy-repid .&lt;/P&gt;&lt;P&gt;data: itab like mara occurs 0 with header line .&lt;/P&gt;&lt;P&gt;data: itab1 like makt occurs 0 with header line .&lt;/P&gt;&lt;P&gt;break devuser .&lt;/P&gt;&lt;P&gt; select * from mara into table itab .&lt;/P&gt;&lt;P&gt;v_repid = sy-repid .&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;&lt;/P&gt;&lt;P&gt;   I_CALLBACK_PROGRAM                = v_repid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I_CALLBACK_USER_COMMAND           =  'DISPLAY_DOCUMENT '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I_STRUCTURE_NAME                  = 'mara'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    t_outtab                          = itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************&lt;/P&gt;&lt;P&gt; FOR DISPLAYING sECONDRY LIST .&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="53" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM DISPLAY_DOCUMENT USING R_UCOMM  LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                            RS_SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF RS_SELFIELD-FIELDNAME = 'MATNR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE ITAB INDEX  RS_SELFIELD-TABINDEX .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select * from makt into table itab1 where matnr = itab-matnr .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0 .&lt;/P&gt;&lt;P&gt;  ENDIF .&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;    I_STRUCTURE_NAME                  = 'makt'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     T_OUTTAB                          = ITAB1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           .&lt;/P&gt;&lt;P&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&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;THIS code will definetly help you to understand intractive alv ...&lt;/P&gt;&lt;P&gt;Regards &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;priyank Dixit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 06:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-see-the-code-below-gt-event-user-command-not-working/m-p/4158260#M994147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T06:35:15Z</dc:date>
    </item>
  </channel>
</rss>

