<?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 problem in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544333#M852645</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;I am facing a problem in table control with its mandatory fields.&lt;/P&gt;&lt;P&gt;I want the mandatory field if not filled should not give an error in case back,previous or cancel button is pressed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any pointers to this will really be helpfull...&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;Edited by: pr sharma on Mar 14, 2008 6:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Mar 2008 17:22:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-14T17:22:35Z</dc:date>
    <item>
      <title>problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544333#M852645</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;I am facing a problem in table control with its mandatory fields.&lt;/P&gt;&lt;P&gt;I want the mandatory field if not filled should not give an error in case back,previous or cancel button is pressed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any pointers to this will really be helpfull...&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;Edited by: pr sharma on Mar 14, 2008 6:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 17:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544333#M852645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T17:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544334#M852646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Within your edit MODULES, check that the OK_CODE and exit if it is one you don't want the edit performed on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  CHAIN.
    FIELD: a1_zlmcont-zip.

    MODULE zipcode_edit_0101.
  ENDCHAIN.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  zipcode_edit_0101  INPUT
*&amp;amp;---------------------------------------------------------------------*
MODULE zipcode_edit_0101 INPUT.

  PERFORM edit_zipcode USING a1_zlmcont-zip.

ENDMODULE.                 " zipcode_edit_0101  INPUT

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  edit_zipcode
*&amp;amp;---------------------------------------------------------------------*
FORM edit_zipcode USING    p_zip.
  DATA: zip_len TYPE p.

  CHECK mode NE c_display.    "&amp;lt;== change to check OK_CODE in your need

  CHECK NOT p_zip IS INITIAL.
  COMPUTE zip_len = strlen( p_zip ).

  CHECK zip_len NE 5
    AND zip_len NE 10.

  MESSAGE e055.

ENDFORM.                    " edit_zipcode
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 17:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544334#M852646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T17:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544335#M852647</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 these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABLE CONTROL -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geekinterview.com/Interview-Questions/SAP-R-3" target="test_blank"&gt;http://www.geekinterview.com/Interview-Questions/SAP-R-3&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa4735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa4735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/example_code.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/example_code.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/links/abap.htm" target="test_blank"&gt;http://www.sapgenie.com/links/abap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg of table Control:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://members.aol.com/_ht_a/skarkada/sap/table_control/" target="test_blank"&gt;http://members.aol.com/_ht_a/skarkada/sap/table_control/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;table_control.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm" target="test_blank"&gt;http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table control in BDC&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/45/adee2396f711d1b46b0000e8a52bed/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/45/adee2396f711d1b46b0000e8a52bed/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Laxmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 17:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544335#M852647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T17:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544336#M852648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure the buttons are defined as "Exit commands" in the gui and in the PAI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module exit_0100 at exit-command.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2008 17:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544336#M852648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-14T17:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544337#M852649</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;ya u can do that....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give Function Type E to those two buttons ( in GUI Status)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now make one module in PAI...&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 exit_0100 AT EXIT-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;&lt;STRONG&gt;MODULE exit_0100 INPUT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDMODULE.                 " exit_0100  INPUT&lt;/STRONG&gt;&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 if usefull....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 11:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-table-control/m-p/3544337#M852649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-15T11:16:36Z</dc:date>
    </item>
  </channel>
</rss>

