<?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 module pool programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949288#M1798368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to module pool programming. I want to know how to create quiz. here,i have to create couple of questions using screen painter. then the&amp;nbsp; user should choose the correct answer and the result has to be displayed.i have been thinking different ways to do it. but could not get the correct one. any suggestion please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Dec 2013 22:18:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-14T22:18:53Z</dc:date>
    <item>
      <title>module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949288#M1798368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to module pool programming. I want to know how to create quiz. here,i have to create couple of questions using screen painter. then the&amp;nbsp; user should choose the correct answer and the result has to be displayed.i have been thinking different ways to do it. but could not get the correct one. any suggestion please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Dec 2013 22:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949288#M1798368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-14T22:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949289#M1798369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I were teaching, I would do it differently:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions, possible answers, correct answers in an ITab (or set of itabs).&amp;nbsp; Loop at itab.&amp;nbsp; Call modeless dialog 1 feeding it question and possible answers.&amp;nbsp; Modeless dialog has radio buttons&amp;nbsp; for choosing among the possible answers and a done button (or submit) for the student to submit a final answer.&amp;nbsp; On retiurn, correct/incorrect calculations are done.&amp;nbsp; Then the second modeless dialog gets the given answer and the correct answer.&amp;nbsp; At the end a report can give the grade.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that's not exactly what you asked for, but is it viable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 00:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949289#M1798369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T00:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949290#M1798370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you neal. that's quite what i asked. but i have problem with the coding. can you please elaborate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 04:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949290#M1798370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T04:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949291#M1798371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I remember having done this project long time before, though it was using Javascripts and Servlets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. First step would be to create database for the questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The fields could be like -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1. Question&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2. Option a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3. Option b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4. Option c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5. Option d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6. Correct answer (a,b,c,d)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create the screen in the screen painter with a text field for question, four radio buttons and four text fields for the options. Other buttons can also be added like going to the previous question and going to the next question, Get results, Quit, go to first question, go to last question etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In the PBO, use a function to randomly select a distinct question from database. Update it to an internal table. The internal table would ideally have all the fields in the database table in addition to answer given by candidiate and a flag to denote right or wrong.&amp;nbsp; Populate the screen painter with the questions and the options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. In the PAI, update the internal table with the answer submitted by candidate. For this you need to give a function code for the radio button and handle that function code.&amp;nbsp; Everytime a question is answered, update the internal table with the answer and the flag as correct or wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also handle other events like going to previous question, first question, get results etc in the PAI. Going to previous questions or first question can be handled by retrieving the data from internal table. And going to next question by taking the next &lt;STRONG&gt;distinct &lt;/STRONG&gt;question from database (of course, only till the maximum number of questions have been asked) if current question is the last record in the internal table, or picking the next question from the internal table depending on the current displayed question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the button click for getting results, calculate the number of correct answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. If you want to store the history of results, update the results in another database table with the results, giving the candidate name, date, time, score etc. For this you may have to give an addition screen in the beginning to input the candidate details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that would help you build the program. All the best. !. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/408/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 05:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949291#M1798371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T05:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949292#M1798372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you susmitha. I did the same as you have described. But,the answers are not fetched from the internal table. is there any sample program for this scenario ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 05:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949292#M1798372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T05:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949293#M1798373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont have any. Can you share your code so that we can check why the answers are not fetched ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 05:58:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949293#M1798373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T05:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949294#M1798374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Intersting Thread for me &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/408/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rg, Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 07:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949294#M1798374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T07:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949295#M1798375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Start with just constants / hardcoded.&amp;nbsp; Say 4 questions.&amp;nbsp; 16 possible answers.&amp;nbsp; 4 correct answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So your first screen is driven by an FM and also fully contained there.&amp;nbsp; Nice for testing.&amp;nbsp; The FM has parameters Question, PAns1, PAns2, PAns3, PAns4.&amp;nbsp; It returns GAns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you get that far?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Dec 2013 14:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949295#M1798375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-15T14:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949296#M1798376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Maya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First You require Ztable fields&lt;/P&gt;&lt;P&gt;1.for mandt&lt;/P&gt;&lt;P&gt;2. For index int&lt;/P&gt;&lt;P&gt;3.for Question&lt;/P&gt;&lt;P&gt;4.for opt 1&lt;/P&gt;&lt;P&gt;5.for opt2&lt;/P&gt;&lt;P&gt;6.for opt3&lt;/P&gt;&lt;P&gt;7.for opt4&lt;/P&gt;&lt;P&gt;8.for right answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set Screen 100&lt;/P&gt;&lt;P&gt;wa-name1&lt;/P&gt;&lt;P&gt;wa-opt1&lt;/P&gt;&lt;P&gt;wa-opt2&lt;/P&gt;&lt;P&gt;wa-opt3&lt;/P&gt;&lt;P&gt;wa-opt4&lt;/P&gt;&lt;P&gt;same setting&lt;/P&gt;&lt;P&gt;Alloptions&lt;/P&gt;&lt;P&gt;is Set For Option &amp;amp; NAme&lt;/P&gt;&lt;P&gt;all options modif id must be same&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/344226" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lcl_random TYPE REF TO cl_abap_random_int,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_min TYPE i,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_max TYPE i,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_random TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;MOVE: v_from TO v_min,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_to TO v_max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Get the Random Number generator class instance&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;module status_0100 &lt;SPAN class="L0S52"&gt;output.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S52"&gt;if&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-name1 is initial.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;TRY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lcl_random = cl_abap_random_int=&amp;gt;create( min = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max = v_max ).&lt;/P&gt;&lt;P&gt;&amp;nbsp; CATCH cx_abap_random.&lt;/P&gt;&lt;P&gt;ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp; Get the Random Number:&lt;/P&gt;&lt;P&gt;&amp;nbsp; v_random = lcl_random-&amp;gt;get_next( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Single * from Ztable where&lt;/P&gt;&lt;P&gt;index = v_random.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set your Varient name in here&lt;/P&gt;&lt;P&gt;wa-name1 = ztable-myQuestion.&lt;/P&gt;&lt;P&gt;wa-opt1 = ztable-opt1.&lt;/P&gt;&lt;P&gt;wa-opt2 = ztable-opt2.&lt;/P&gt;&lt;P&gt;wa-opt3 = ztable-opt3.&lt;/P&gt;&lt;P&gt;wa-opt4 = ztable-opt4.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;endmodule.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;IMG alt="" class="jiveImage" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/SPAN&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;modif &lt;SPAN class="L0S52"&gt;id &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;module user_command_0100 &lt;SPAN class="L0S52"&gt;input.&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;case sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ucomm.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;when &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'PROC'.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; check answer is true or false .&amp;amp; code for next Question.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;endcase.&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;endmodule.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 07:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949296#M1798376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-16T07:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949297#M1798377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you all &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/408/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt; &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/408/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;. Thank you mohit.I got the output.I did exactly what you mention above and it was very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 05:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949297#M1798377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-17T05:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949298#M1798378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Neal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 05:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programming/m-p/9949298#M1798378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-17T05:18:43Z</dc:date>
    </item>
  </channel>
</rss>

