<?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 Screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3037999#M718828</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 designed screen painter and in that I have added weight field from vekp-ntgew. My problem is suppose if I enter negative value in that field on the screen it is giving dump but I don&amp;#146;t want like I just want to display error message like negative values not allowed in weight. How to avoid the dump for negative values in the screen. Please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2007 08:13:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-06T08:13:37Z</dc:date>
    <item>
      <title>Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3037999#M718828</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 designed screen painter and in that I have added weight field from vekp-ntgew. My problem is suppose if I enter negative value in that field on the screen it is giving dump but I don&amp;#146;t want like I just want to display error message like negative values not allowed in weight. How to avoid the dump for negative values in the screen. Please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3037999#M718828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038000#M718829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babji,&lt;/P&gt;&lt;P&gt;I believe it is the processing part which is giving you the dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example .if your field is an integer type field or number type field&lt;/P&gt;&lt;P&gt;                    the obviously it would not accept the -ve sign and hence dump the program.You can change the datatype of the particular field to numc and then try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038000#M718829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038001#M718830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this happens because the domain used for the field vekp-ntgew doesn't accept a sign (its always +ve). You can use some other domain allowing sign or create a new one &amp;amp; allow the sign. Then you can have a check on this field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:49:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038001#M718830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038002#M718831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PAI of the screen..write the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;fieldname&amp;gt; MODULE &amp;lt;module_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldname is where u r entering negative value and give any module name.&lt;/P&gt;&lt;P&gt;IN the module write..&lt;/P&gt;&lt;P&gt;IF &amp;lt;fldname&amp;gt;+0(1) = '-'.&lt;/P&gt;&lt;P&gt;message e000.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will do it..&lt;/P&gt;&lt;P&gt;Hope it helps..reward if it does&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:50:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038002#M718831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038003#M718832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the end give a 'V' sign to avoid dump due to negative value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The negative value will be displayed in the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the TEXT attribute give as ___.___.___.___,___V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 09:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3038003#M718832</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2007-11-06T09:01:36Z</dc:date>
    </item>
  </channel>
</rss>

