<?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: user-command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727592#M633057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;user command is used when there is any event that must be triggred when a user does some action on it.&lt;/P&gt;&lt;P&gt;for example a push button the tool bar. double click on a particular list etc.&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;when ' fct1'&lt;/P&gt;&lt;P&gt;xxxxxxxx&lt;/P&gt;&lt;P&gt;when 'fct2'&lt;/P&gt;&lt;P&gt;yyyyyyyyy&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Sep 2007 16:50:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-13T16:50:37Z</dc:date>
    <item>
      <title>user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727590#M633055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u help abt the usage of user-command in detail with examples ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 16:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727590#M633055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-13T16:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727591#M633056</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; Check the link below. It gives you detailed description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba34635c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba34635c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_menu_painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:  'Basic list, SY-LSIND =', sy-lsind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:  'LINE-SELECTION, SY-LSIND =', sy-lsind.&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;    WHEN 'TEST'.&lt;/P&gt;&lt;P&gt;      WRITE:  'TEST, SY-LSIND =', sy-lsind.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program uses a status TEST, defined in the Menu Painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function key F5 has the function code TEST and the text Test for demo. &lt;/P&gt;&lt;P&gt;Function code TEST is entered in the List menu. &lt;/P&gt;&lt;P&gt;The function codes PICK and TEST are assigned to pushbuttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Vijayendra  Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 16:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727591#M633056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-13T16:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727592#M633057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;user command is used when there is any event that must be triggred when a user does some action on it.&lt;/P&gt;&lt;P&gt;for example a push button the tool bar. double click on a particular list etc.&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;when ' fct1'&lt;/P&gt;&lt;P&gt;xxxxxxxx&lt;/P&gt;&lt;P&gt;when 'fct2'&lt;/P&gt;&lt;P&gt;yyyyyyyyy&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 16:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command/m-p/2727592#M633057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-13T16:50:37Z</dc:date>
    </item>
  </channel>
</rss>

