<?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: Table control + mandantory fields, and cancel button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449097#M548771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PAI of screen you should use this module.. only then this will be called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODULE_EXIT at exit-command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2007 07:52:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-04T07:52:15Z</dc:date>
    <item>
      <title>Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449082#M548756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table control which have some mandantory fields, the issue is, when I click on cancel button, still the msg comes that mandantory fields should be fillied ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can avoid this issue ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449082#M548756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449083#M548757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give LEAVE program in CANCEL BUtton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449083#M548757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449084#M548758</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;Write a module in PAI with &amp;lt;b&amp;gt;at exit command &amp;lt;/b&amp;gt;adition.&lt;/P&gt;&lt;P&gt;Write that cancel ok_code capture in that module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember the function type of the cancel to be 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will surely work.&lt;/P&gt;&lt;P&gt;Reward if found helpfull.&lt;/P&gt;&lt;P&gt;Regards rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:15:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449084#M548758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449085#M548759</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;&lt;/P&gt;&lt;P&gt;write like this at table control screen,&lt;/P&gt;&lt;P&gt;module exit_prg at exit-command.&lt;/P&gt;&lt;P&gt;and doble click on module, write code like this,&lt;/P&gt;&lt;P&gt;module exit_prg input.&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'CANCEL'.&lt;/P&gt;&lt;P&gt;    leave program.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " exit_prg  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and your CANCEL button's Functional type should be E 'Exit command' in the PF-STATUS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449085#M548759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449086#M548760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you tried with at exit command?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI add 'MODULE exit_control at exit-command.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module exit_control input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'EXIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      leave program.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " exit_control  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449086#M548760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449087#M548761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*write a module in ur PAI. write it as the very first line in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE EXIT AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this module write LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and make sure that ur CANCEL button's Functional type should be E 'Exit command' in the PF-STATUS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449087#M548761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449088#M548762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On cancel button, I have already given 'Leave Program'....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I can do further to exit when user press cancel button ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:22:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449088#M548762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449089#M548763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I do not place any entry in table control, and press cancel button things works fine, but if 1 column is fillied, in table control, but still I want to cancel, then comes the msg, tha all mandantory fields should be filled...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a module called MODULE USER_COMMAND_0100 INPUT, and there I am leaving the program when is cancel button pressed !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shah H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449089#M548763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449090#M548764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello dear,&lt;/P&gt;&lt;P&gt;you shoul write that code inside a module that having  AT EXIT-COMMAND addition. Then only it will work. Otherwise it will not work as those are automatic field checks provided by SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449090#M548764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449091#M548765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you made ur CANCEL button's Functional type as E 'Exit command' in the PF-STATUS of ur screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449091#M548765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449092#M548766</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;Thanks I will try with exit command, .... and will let you guys know...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449092#M548766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449093#M548767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the best, I'm sure it will work.&lt;/P&gt;&lt;P&gt;Regards rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449093#M548767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449094#M548768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunatelly, it did not work, or might be I made some mistake:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well I did followings:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a new PAI module see code pls:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: pai flow logic for tablecontrol 'Z_TAB_CTRL'&lt;/P&gt;&lt;P&gt;  MODULE EXIT AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at g_z_tab_ctrl_itab.&lt;/P&gt;&lt;P&gt;    chain.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-videocodec.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-BITC.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-AUDIO.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-kommentar.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-videonorm.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-hdformat.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-bitratemin.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-bitrateave.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-bitratemax.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-videosize.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-aspectratio.&lt;/P&gt;&lt;P&gt;      field zenco_tab_ctrl-qc_level.&lt;/P&gt;&lt;P&gt;      module z_tab_ctrl_modify on chain-request.&lt;/P&gt;&lt;P&gt;    endchain.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  module z_tab_ctrl_user_command.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module Z_TAB_CTRL_change_tc_attr.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module Z_TAB_CTRL_change_col_attr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module user_command_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process on value-request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this is my module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE EXIT INPUT.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  CLEAR ok_code.&lt;/P&gt;&lt;P&gt;  CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'E'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    leave PROGRAM.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what I am doing wrong ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449094#M548768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449095#M548769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put a BREAK-POINT in MODULE EXIT INPUT and see what's happening&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449095#M548769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449096#M548770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try to debug it, but in debug mode, the control is not comming to exit module ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why, even the first line of my PAI is exit module...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Well what I notice is when I do double click on moduel exit, it gives me msg that, "PAI mdoule EXIT is not used in Screen of the program SAPLZ_popup"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea, what is going on ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shah H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449096#M548770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449097#M548771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PAI of screen you should use this module.. only then this will be called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODULE_EXIT at exit-command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449097#M548771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449098#M548772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to your PF-STATUS, click on the CANCEL icon, there it will ask for Functional type, give E in it, it will solve your problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:56:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449098#M548772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449099#M548773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Srinivasa, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to change the name of the module as well, but still it did not work ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one has any idea, what I am doing wrong ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449099#M548773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449100#M548774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tripat, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my cancel button is on screen, and using screen painter, I have place the fctcode to 'E'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 07:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449100#M548774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T07:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandantory fields, and cancel button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449101#M548775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;buddy, its Functional type not Function Code, Functional type should be E, and function code can be any name you want to pass to SY-UCOMM, which u have given as E but i'll prefer to give Function Code as CANCEL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Tripat Pal Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 08:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandantory-fields-and-cancel-button/m-p/2449101#M548775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T08:02:51Z</dc:date>
    </item>
  </channel>
</rss>

