<?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: using both at line-selection and at user-command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959658#M394612</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       If you have defined you own function code then those should be handled using the AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see the list of Function codes that you can handle AT LINE-SELECTION in the documentation of this keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use both these events in a single report with out any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Feb 2007 11:23:34 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-02-07T11:23:34Z</dc:date>
    <item>
      <title>using both at line-selection and at user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959655#M394609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hellow friends ,&lt;/P&gt;&lt;P&gt;to use both  at line-selection and at user-command in the same report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 11:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959655#M394609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-07T11:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: using both at line-selection and at user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959656#M394610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can do it 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;***********************************************************************&lt;/P&gt;&lt;P&gt;  PERFORM at_line_selection.&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;  PERFORM at_user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM AT_LINE_SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: LV_CURSOR_FIELD(30).&lt;/P&gt;&lt;P&gt;  DATA: LV_MATNR TYPE MATNR.&lt;/P&gt;&lt;P&gt;  CLEAR H_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD LV_CURSOR_FIELD.&lt;/P&gt;&lt;P&gt;  CASE LV_CURSOR_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'PSPNR'.&lt;/P&gt;&lt;P&gt;      PERFORM LAGER_AN_PSP USING WA_MATNR-M1-RSNUM&lt;/P&gt;&lt;P&gt;                                 WA_MATNR-M1-RSPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'PSPNR2'.&lt;/P&gt;&lt;P&gt;      H_UCOMM = 'PSPNR2'.&lt;/P&gt;&lt;P&gt;      IF NOT PSPNR2 IS INITIAL AND IT_VKBEL-VBELN CN '0123456789'.&lt;/P&gt;&lt;P&gt;        PERFORM LAGER_AN_PSP_VKBEL USING IT_VKBEL&lt;/P&gt;&lt;P&gt;                                         0&lt;/P&gt;&lt;P&gt;                                         PSPNR2&lt;/P&gt;&lt;P&gt;                                         H_MAKTX&lt;/P&gt;&lt;P&gt;                                         ' '.     "keine Blindbuchung&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; CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK_NEW'.&lt;/P&gt;&lt;P&gt;      PERFORM NEU_START USING 'X'.&lt;/P&gt;&lt;P&gt;    WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;      PERFORM NEU_START USING 'X'.&lt;/P&gt;&lt;P&gt;    WHEN 'CANC'.&lt;/P&gt;&lt;P&gt;      PERFORM NEU_START USING 'X'.&lt;/P&gt;&lt;P&gt;    WHEN 'CHECK'.&lt;/P&gt;&lt;P&gt;      PERFORM NEU_START USING SPACE.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 11:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959656#M394610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-07T11:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: using both at line-selection and at user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959657#M394611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a set pf status you cannot use both the events in the report .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because moment you set a pf-status on the report at-line selection event doesn't work when you click on the screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have an interactive list then it is possible again set pf-status for that list should not be set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 11:23:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959657#M394611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-07T11:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: using both at line-selection and at user-command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959658#M394612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       If you have defined you own function code then those should be handled using the AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see the list of Function codes that you can handle AT LINE-SELECTION in the documentation of this keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use both these events in a single report with out any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 11:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-both-at-line-selection-and-at-user-command/m-p/1959658#M394612</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-02-07T11:23:34Z</dc:date>
    </item>
  </channel>
</rss>

