<?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: Question on Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383836#M529509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayakrishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a text field in screen 300 and set it properties as "Output only" in the screen attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, you can directly pass this message to that text field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Hari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2007 12:18:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-13T12:18:36Z</dc:date>
    <item>
      <title>Question on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383833#M529506</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;Please have a look at the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if deptno-low is initial and deptno-high is initial.&lt;/P&gt;&lt;P&gt;message i003(z_mp4).&lt;/P&gt;&lt;P&gt;leave to screen 100.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explanation of the above code:-&lt;/P&gt;&lt;P&gt;I have added two text fields (deptno-low &amp;amp; deptno-high) in screen 100. &lt;/P&gt;&lt;P&gt;If both of these fields are initial, i will display a message "Please enter atleast one field value" in a dialog window in screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question?&lt;/P&gt;&lt;P&gt;I want to display the same error message on a different screen (say 300) in a text field (of type output only).&lt;/P&gt;&lt;P&gt;How do i approach this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 11:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383833#M529506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T11:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383834#M529507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; You can do it as follows.&lt;/P&gt;&lt;P&gt;IN TOP INCLUDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: msg type string.&lt;/P&gt;&lt;P&gt;Use this along with your message statement.&lt;/P&gt;&lt;P&gt;message i003(z_mp4) INTO msg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure msg is declared in some global place TOP include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you can assign this msg to that output only field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 11:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383834#M529507</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-13T11:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383835#M529508</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;in top include declare a vraible of type string as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: msg1 type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in pai module where u give message use that variable as .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message i003(z_mp4) INTO msg. -&amp;gt; where z_mp4 is a message class [SE91]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure msg is declared in some global place TOP include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you can assign this msg to that output only field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or create a another screen in that in PBO module give message as&lt;/P&gt;&lt;P&gt; message w000(messageclassname) with 'NTER ATLEAST ONE VALUE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if useful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with Regards,&lt;/P&gt;&lt;P&gt;suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 12:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383835#M529508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T12:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383836#M529509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayakrishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a text field in screen 300 and set it properties as "Output only" in the screen attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, you can directly pass this message to that text field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Hari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 12:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383836#M529509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T12:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383837#M529510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;save it in a global variable and display in that screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 12:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-module-pool/m-p/2383837#M529510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T12:26:28Z</dc:date>
    </item>
  </channel>
</rss>

