<?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 validations. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877036#M675356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u cannot use select * for field validation .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using select single.............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT single  matkl  FROM zmmsortseq INTO &amp;lt;variable of type matkl&amp;gt;&lt;/P&gt;&lt;P&gt;WHERE matkl IN r_matkl.&lt;/P&gt;&lt;P&gt;&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>Mon, 08 Oct 2007 10:44:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-08T10:44:36Z</dc:date>
    <item>
      <title>Subscreen validations.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877033#M675353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;I want to validate the sub-screen field.&lt;/P&gt;&lt;P&gt;from my main screen I am calling subscree which is having the dynamic select option.&lt;/P&gt;&lt;P&gt;I want to validate the subscreen select option field.&lt;/P&gt;&lt;P&gt;my code is like this: &lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: MATKL INCLUDING SY-REPID '3000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: MATKL.&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0200.&lt;/P&gt;&lt;P&gt;Under USER_COMMAND_0200 I have writen the validation code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SELECT * FROM zmmsortseq INTO TABLE itab_mfg&lt;/P&gt;&lt;P&gt;                  WHERE matkl IN r_matkl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;          MESSAGE e000(zm) WITH text-010.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;r_matkl is my subscreen select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One the error message will triger I want to enable the select option again but its displaying in grey mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sridhar Patlola.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 10:19:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877033#M675353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T10:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Subscreen validations.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877034#M675354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Give like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE &amp;lt;b&amp;gt;i000&amp;lt;/b&amp;gt;(zm) WITH text-010.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of e in the message give i then you will get it in change mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 10:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877034#M675354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T10:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Subscreen validations.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877035#M675355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haritha,&lt;/P&gt;&lt;P&gt;Thanks for the replay.&lt;/P&gt;&lt;P&gt;Yes I have given the same and after i000 message called the same screen then its ok working fine but client need a error message not information message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 10:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877035#M675355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T10:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Subscreen validations.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877036#M675356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u cannot use select * for field validation .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using select single.............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT single  matkl  FROM zmmsortseq INTO &amp;lt;variable of type matkl&amp;gt;&lt;/P&gt;&lt;P&gt;WHERE matkl IN r_matkl.&lt;/P&gt;&lt;P&gt;&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>Mon, 08 Oct 2007 10:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-validations/m-p/2877036#M675356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T10:44:36Z</dc:date>
    </item>
  </channel>
</rss>

