<?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: subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290406#M499614</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanku.I assigned bonus points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sairam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2007 10:37:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-14T10:37:43Z</dc:date>
    <item>
      <title>subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290402#M499610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the subscreen  i have add one field estimated cost(QMEL-ZZECOST).For that one i have created one append structrure in QMEL  and add ZZCOST field.&lt;/P&gt;&lt;P&gt;Now iam creating subscreen in QQMA0008 in the screen exit SAPLXQQM 0100.&lt;/P&gt;&lt;P&gt;I have created in the subscreen in this exit and placed the field QMEL-ZZCOST.&lt;/P&gt;&lt;P&gt;This ZZCOST field is CURR field.What my problem how to check the validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) when i enter the input non numeric values should issue a error message to input only numericals in the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)input numerical value should not issue an error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest logic and where i have write the logic?Help me .it is very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sairam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 09:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290402#M499610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290403#M499611</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;Try this logic in PAI of subscreen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if fld_name co '0123456789.'.
"process commands... no error
else.
message e001. "E-error
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 09:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290403#M499611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T09:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290404#M499612</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;Create a PROCESS AFTER INPUT module inflow logic of the screen to check the QMEL-ZZCOST FIELD as below&lt;/P&gt;&lt;P&gt;FIELD QMEL-ZZCOST module_check_ZZCOST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND IN THE MODULE VALIDATE THE FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE STRING OPERATION TO VALIDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF QMEL-ZZCOST CONTAINS ONLY NUMERIC VALUES.&lt;/P&gt;&lt;P&gt;DON'T DO ANY THING&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;MESSAGE 'INPUT ONLY NUMERIC VALUES' TYPE 'W'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 09:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290404#M499612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T09:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290405#M499613</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;Follow the steps to validate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. After entering the input values each character check numeric or not in any one character non numeric then issue a error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In input parameter type as I define.  then it will accepts only numerics&lt;/P&gt;&lt;P&gt;   after that you  can convert as you want using with convertion eits. &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;/P&gt;&lt;P&gt;&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;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 10:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290405#M499613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T10:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290406#M499614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanku.I assigned bonus points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sairam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 10:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen/m-p/2290406#M499614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T10:37:43Z</dc:date>
    </item>
  </channel>
</rss>

