<?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: ALV Grid Warning Message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910295#M1482763</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can call FM POPUP_TO_CONFIRM when pressing the back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 May 2010 14:06:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-13T14:06:18Z</dc:date>
    <item>
      <title>ALV Grid Warning Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910294#M1482762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;I'm using the FM: 'REUSE_ALV_GRID_DISPLAY' to create a report but one of the requirement is to display an warning message when the user click on the back button since I don't a screen that I can use the PAI to handle this, is there any other approach to complete  this task, any help will be very appreaciated, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 May 2010 13:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910294#M1482762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-13T13:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid Warning Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910295#M1482763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can call FM POPUP_TO_CONFIRM when pressing the back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 May 2010 14:06:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910295#M1482763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-13T14:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid Warning Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910296#M1482764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But how do I know when user clicked the BACK button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 May 2010 14:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910296#M1482764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-13T14:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid Warning Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910297#M1482765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can check the ok code in the user command routine of your ALV. The PAI is not necessary always.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the routine name to the importing parameter I_CALLBACK_USER_COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 May 2010 14:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910297#M1482765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-13T14:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid Warning Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910298#M1482766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Norman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your report program your need use the module that handle the button press by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.E.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'BACK'.   " When the user press back button, you can send a warning message&lt;/P&gt;&lt;P&gt;      set screen 0.&lt;/P&gt;&lt;P&gt;    when 'EXIT'.&lt;/P&gt;&lt;P&gt;      leave program.&lt;/P&gt;&lt;P&gt;    when 'CANCEL'.&lt;/P&gt;&lt;P&gt;      leave program.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;  clear sy-ucomm.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 May 2010 14:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-warning-message/m-p/6910298#M1482766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-13T14:21:29Z</dc:date>
    </item>
  </channel>
</rss>

