<?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: Regarding For Module pool programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127103#M1364755</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not getting you clearly.You mean to say that you have to pass data in background with out screens been seen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With thanks and reagrds,&lt;/P&gt;&lt;P&gt;kiruba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 13 Sep 2009 06:21:42 GMT</pubDate>
    <dc:creator>I066686</dc:creator>
    <dc:date>2009-09-13T06:21:42Z</dc:date>
    <item>
      <title>Regarding For Module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127102#M1364754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;am developing one userinterfase scrren in that screen my input is production order number.after giving that am selecting one 'Notification Change ' Button. once we click on that button  the input should passed to QM10 Transaction .in qm10 tcode&lt;/P&gt;&lt;P&gt;we need to select one Production order input dynamic screen in that scrren we have to pass that valu after that we have to execute that screen finally the user should see the last screen only..this is internal thing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 10:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127102#M1364754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-12T10:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding For Module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127103#M1364755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not getting you clearly.You mean to say that you have to pass data in background with out screens been seen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With thanks and reagrds,&lt;/P&gt;&lt;P&gt;kiruba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Sep 2009 06:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127103#M1364755</guid>
      <dc:creator>I066686</dc:creator>
      <dc:date>2009-09-13T06:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding For Module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127104#M1364756</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;Use 'Set parameter' in the first screen to pass value and use 'Get parameter' to get variable value in the calling screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will pass values internally.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 05:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127104#M1364756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-14T05:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding For Module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127105#M1364757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi srinath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The objective can be achieved by using set parameter id ... and sikp first screen.&lt;/P&gt;&lt;P&gt; 1st you have to get the parameter id of the field to which you want to pass the value, &lt;/P&gt;&lt;P&gt; this can be done by opening the program in se80 and then check for the field attributes.&lt;/P&gt;&lt;P&gt; If the parameter id is not present then you have to take the help of enhancement. Once &lt;/P&gt;&lt;P&gt; you locate the enhancement point and method (BADI/EXIT..), you have to use &lt;/P&gt;&lt;P&gt; EXPORT &amp;lt;FIELD&amp;gt; TO MEMORY ID 'ID1' . Here you can export multiple fields, work are/header,&lt;/P&gt;&lt;P&gt; Internal tables. Once you done this now go to the enhancement point and write:&lt;/P&gt;&lt;P&gt; IMPORT &amp;lt;FIELD&amp;gt; FROM MEMORY ID 'ID1', Remember the id name must be same in both of the cases.&lt;/P&gt;&lt;P&gt; After completing this you have to write SUPRESS DIALOG in the PBO for the condition that the&lt;/P&gt;&lt;P&gt; 'ID' is not initial. Hence you need 2 enhancement points one in PAI and Other in PAI in order&lt;/P&gt;&lt;P&gt; to accomplish this task.&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;SUBHASH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 09:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-for-module-pool-programming/m-p/6127105#M1364757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-14T09:19:08Z</dc:date>
    </item>
  </channel>
</rss>

