<?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 Cell Validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875147#M368081</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vara,&lt;/P&gt;&lt;P&gt;No isues , but this sorted table can't solve this problem.&lt;/P&gt;&lt;P&gt;I appreciate your kind effort...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jan 2007 12:00:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-23T12:00:56Z</dc:date>
    <item>
      <title>Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875143#M368077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;In our object,there is a table control with an input enble column ,say index no.&lt;/P&gt;&lt;P&gt;Suppose user entered index no. = 5 at line no 17 and again he has entered index no. = 5 at line no 201.&lt;/P&gt;&lt;P&gt;The requirment is we have to stop the user setting the cursor at line no. 201 telling this no. is alredy entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone plz help on this?&lt;/P&gt;&lt;P&gt;Thx in Adv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875143#M368077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875144#M368078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajarshi,&lt;/P&gt;&lt;P&gt;i am still learning abap.&lt;/P&gt;&lt;P&gt;how would it be if u go for a sorted table with the editing field as it's primary key?&lt;/P&gt;&lt;P&gt;this is just my attempt to understand the situation.&lt;/P&gt;&lt;P&gt;i apologize if this is silly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:55:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875144#M368078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875145#M368079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For that table control a Internal table will be linked to that i mean the entried will ge in an internal table in the PAI of that screen.&lt;/P&gt;&lt;P&gt;so there,after the Loop of the table control  write a Module, and in that module check the entry whether is already existed or not, i mean loop that internal table and search for that one, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875145#M368079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875146#M368080</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;Do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;MODULE CHECK_INDEXNO.&lt;/P&gt;&lt;P&gt;ENDLOOP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module check_indexno.&lt;/P&gt;&lt;P&gt;read table itab with key indexno = wa_itab-indexno.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt; Message...&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875146#M368080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875147#M368081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vara,&lt;/P&gt;&lt;P&gt;No isues , but this sorted table can't solve this problem.&lt;/P&gt;&lt;P&gt;I appreciate your kind effort...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875147#M368081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Cell Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875148#M368082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vasant,&lt;/P&gt;&lt;P&gt;This thing can stop the user but we need to locate the cell by setting the cursor.&lt;/P&gt;&lt;P&gt;Regds.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-cell-validation/m-p/1875148#M368082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:03:25Z</dc:date>
    </item>
  </channel>
</rss>

