<?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: Editable ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820912#M659772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi santhosh&lt;/P&gt;&lt;P&gt;I want to enter ONLY NUMERIC.&lt;/P&gt;&lt;P&gt;If user enters any char, i must trigger message.&lt;/P&gt;&lt;P&gt;By the ways, I am doing with OO ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANy more clues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 09:06:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T09:06:10Z</dc:date>
    <item>
      <title>Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820909#M659769</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 have a field that can be editable basically a CHAR type in dictionary.&lt;/P&gt;&lt;P&gt;I have to restrict to enter only numeric.No chars at all else trigger a message.&lt;/P&gt;&lt;P&gt;I tried to use INTTYPE, DATATYPE,DOMAIN in field catalog to N / NUMC / NUMC30 respctively.&lt;/P&gt;&lt;P&gt;I also used event handler DATA_CHANGED.By this I could trigger the message.But my 2 problems are below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. When I restrict from field catalog, why is it still its allowing char fields to enter in my editable field in ALV.&lt;/P&gt;&lt;P&gt;2. After the message, if I dont remove the char fields, it should not allow me to place the cursor in any other position or do any actition even untill I correct the error in the editable field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any clues friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 08:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820909#M659769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T08:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820910#M659770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kiran,&lt;/P&gt;&lt;P&gt;             Use this fm CATS_NUMERIC_INPUT_CHECK and input the value that u enter in the column, if the value is not integer then it will raise exception as NO_NUMERIC so then u can check whether the value is interger or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 08:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820910#M659770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T08:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820911#M659771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use layouts to change the alv into the edit mode&lt;/P&gt;&lt;P&gt;code sample:&lt;/P&gt;&lt;P&gt;DATA WA_LAYOUT TYPE LVC_S_LAYO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_LAYOUT-EDIT = 'X'.&lt;/P&gt;&lt;P&gt;      WA_LAYOUT-GRID_TITLE = 'GRID CONTAINER FOR MATERIAL DISPLAY - EDITING'.&lt;/P&gt;&lt;P&gt;      WA_LAYOUT-NO_TOOLBAR = 'X'.&lt;/P&gt;&lt;P&gt;      WA_LAYOUT-ZEBRA = 'X'.&lt;/P&gt;&lt;P&gt;      WA_LAYOUT-SEL_MODE ='A'.&lt;/P&gt;&lt;P&gt;      CALL METHOD MAIN_ALV-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          IS_LAYOUT       = WA_LAYOUT&lt;/P&gt;&lt;P&gt;        CHANGING&lt;/P&gt;&lt;P&gt;          IT_OUTTAB       = IT_MATL&lt;/P&gt;&lt;P&gt;          IT_FIELDCATALOG = IT_FCAT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 08:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820911#M659771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T08:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820912#M659772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi santhosh&lt;/P&gt;&lt;P&gt;I want to enter ONLY NUMERIC.&lt;/P&gt;&lt;P&gt;If user enters any char, i must trigger message.&lt;/P&gt;&lt;P&gt;By the ways, I am doing with OO ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANy more clues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820912#M659772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T09:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820913#M659773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any help plz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 10:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820913#M659773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T10:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820914#M659774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved on my own&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/2820914#M659774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:12:32Z</dc:date>
    </item>
  </channel>
</rss>

