<?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 BaCK button.PAI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098975#M735286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts ,&lt;/P&gt;&lt;P&gt;i have two table control in two different screen.suppose i am entering some value in screen A with some amount , two to three line i enter.&lt;/P&gt;&lt;P&gt;when i press Enter key and Click on BACK  (PAI) button i am getting corresponding sum of all field  in Table control of  Screen B . ITs working fine.&lt;/P&gt;&lt;P&gt;Now my quation  that &lt;/P&gt;&lt;P&gt;If  i never press Enter key and dirctly clicking on Back (PAI)  button then corresponding sum is not reflecting in second table control of B screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve above problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point is assured.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Dec 2007 06:52:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-04T06:52:36Z</dc:date>
    <item>
      <title>BaCK button.PAI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098975#M735286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts ,&lt;/P&gt;&lt;P&gt;i have two table control in two different screen.suppose i am entering some value in screen A with some amount , two to three line i enter.&lt;/P&gt;&lt;P&gt;when i press Enter key and Click on BACK  (PAI) button i am getting corresponding sum of all field  in Table control of  Screen B . ITs working fine.&lt;/P&gt;&lt;P&gt;Now my quation  that &lt;/P&gt;&lt;P&gt;If  i never press Enter key and dirctly clicking on Back (PAI)  button then corresponding sum is not reflecting in second table control of B screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve above problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point is assured.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 06:52:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098975#M735286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T06:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: BaCK button.PAI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098976#M735287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How have you defined "Back" in you PF-STATUS?... if it's defined as an exit command and you are handling the navigation back to the prior screen via something like "module at_exit_command at exit-command." then you will not be reaching the loop at table control in the PAI and thus not able to do the calculation.  If so, you'll need to change the PF-STATUS and allow the logic to get past the loop at table control before leaving to the prior screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 07:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098976#M735287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T07:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: BaCK button.PAI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098977#M735288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES jONTH,&lt;/P&gt;&lt;P&gt;I AM WORKING ON cOMMAND_EXIT.&lt;/P&gt;&lt;P&gt;WHAT SHOULD BE LOGIC THEN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 07:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098977#M735288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T07:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: BaCK button.PAI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098978#M735289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Typically your PAI should follow something like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process after input.

  module at_exit_command at exit-command. "don't exit here if you want TC data!!

  module d9999_before_tc.

  loop with control tc_9999.

    chain.

      field:
        gs_9999_tc-sel,
        gs_9999_tc-field1.

      module d9999_line_tc_handler.

    endchain.

  endloop.

  module d9999_user_command.  "put your exit in here instead...
  module d9999_pai_scroll.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in other words, you need to let the logic get through the loop on the table control so that you can get the info from the screen, and then you can exit back to the prior screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 07:57:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098978#M735289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T07:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: BaCK button.PAI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098979#M735290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Jonathan Coleman  ,&lt;/P&gt;&lt;P&gt;my problem has been solved, point has been given to you for your valuable Logic or advice, &lt;/P&gt;&lt;P&gt;for further query would you please give your Personal. ID or mail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 08:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button-pai/m-p/3098979#M735290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T08:15:17Z</dc:date>
    </item>
  </channel>
</rss>

