<?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: module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293067#M500412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you sudhir for ur concern . but let me remind u that i am awarding only for the answer best suitable to me. &lt;/P&gt;&lt;P&gt;I think we should do in that way only , Right......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 13:52:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T13:52:33Z</dc:date>
    <item>
      <title>module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293060#M500405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can somebody provide me a detailed step by step procedure for module pool program. like i want to take some data in an internal table and display it with some modifications and calculaations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 06:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293060#M500405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T06:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293061#M500406</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;1.First goto se38.&lt;/P&gt;&lt;P&gt;2. Select an executable program n write&lt;/P&gt;&lt;P&gt;  tables : zstd.&lt;/P&gt;&lt;P&gt;  data : dynnr like sy-dynnr value 0200,&lt;/P&gt;&lt;P&gt;            controls tb type tabstrip.&lt;/P&gt;&lt;P&gt;then save, check n activate.&lt;/P&gt;&lt;P&gt;3. goto se51.&lt;/P&gt;&lt;P&gt;4. write the program name n the screen no. n then create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then goto layout.&lt;/P&gt;&lt;P&gt;drag n drop tabstrip control. then within it again drag n drop subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in tab1 double click n write the name as input and text as i/p parameter n the ref-field as sub.&lt;/P&gt;&lt;P&gt;then double click on tab2 and write the name as output and text as o/p parameter n ref-field as sub.&lt;/P&gt;&lt;P&gt;Then double click on tabstrip and give the name as tabstrip.&lt;/P&gt;&lt;P&gt;Double click on subscreen and give the name as sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then save , check n activate.&lt;/P&gt;&lt;P&gt;5. Then go back n in flow logic write after process before o/p.&lt;/P&gt;&lt;P&gt;Call subscreen sub including 'ur program name' dynnr.&lt;/P&gt;&lt;P&gt;and under process after input write...&lt;/P&gt;&lt;P&gt;call subscreen sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then uncomment user_command_0100 and double click on it then write.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'input'.&lt;/P&gt;&lt;P&gt;dynnr = '0200'.&lt;/P&gt;&lt;P&gt;tbstrip-activetab = 'input'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'output'.&lt;/P&gt;&lt;P&gt;dynnr = '0300'.&lt;/P&gt;&lt;P&gt;tbstrip-activetab = 'output'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Then go back to initial screen and change the screen number to 0200 qand create,while creating select the subscreen radiobutton and goto layout..&lt;/P&gt;&lt;P&gt;then press f6 give table/field name eg  any of ur table name from where u want to select ur fields from.&lt;/P&gt;&lt;P&gt;and click on get from dict.&lt;/P&gt;&lt;P&gt;then select each field n drag n drop them .take 2 push buttons one for back n the other for enter.&lt;/P&gt;&lt;P&gt;s,c,activate. then go back to flowlogic uncomment module_user_command_0200 n double click on it n then write..&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'fetch'.&lt;/P&gt;&lt;P&gt;select * from ur table naem where ur field no = table-field .&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'enter'.&lt;/P&gt;&lt;P&gt;dynnr = '0300'.&lt;/P&gt;&lt;P&gt;tbstrip-activetab = 'output'.&lt;/P&gt;&lt;P&gt;select * from ur table name where condition..&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;s,c,activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. then go back to initial screen and change the screen no to 0300 n create. while creating ,select the subscreen option n goto layout..&lt;/P&gt;&lt;P&gt;then press f 6 n select some more fields n drag n drop them...n create a push button as back. n exit.&lt;/P&gt;&lt;P&gt;s,c,a. go back...&lt;/P&gt;&lt;P&gt;select the flow logic then under module_user_commd_0300.&lt;/P&gt;&lt;P&gt;write the code as..&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'back'.&lt;/P&gt;&lt;P&gt;dynnr = '0200'&lt;/P&gt;&lt;P&gt;tbstrip-activetab = 'input'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'exit'.&lt;/P&gt;&lt;P&gt;leave the program.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;then s,c,a.&lt;/P&gt;&lt;P&gt;then goto se93.&lt;/P&gt;&lt;P&gt;give the TC as z.....with prefix z.&lt;/P&gt;&lt;P&gt;click on create give prg name-the one u have given in se38 n screen no as -0100.&lt;/P&gt;&lt;P&gt;then goto GUI support tab strip n select it.&lt;/P&gt;&lt;P&gt;Select SAP GUI for HTML.&lt;/P&gt;&lt;P&gt;s,c,f 8.&lt;/P&gt;&lt;P&gt;we will get t he output...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u might have got a clear view of module pool program...if so don't forget to reward with points..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;madhuri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 06:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293061#M500406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T06:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293062#M500407</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;Check the below link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F" target="test_blank"&gt;http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also check the transaction ABAPDOCU which gives you lot of sample programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can see the below examples...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to se38 and give demo_dynpro* and press F4.&lt;/P&gt;&lt;P&gt;You will get a list of demo module pool programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 06:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293062#M500407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T06:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293063#M500408</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;pls check this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1...................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is a sample code with five push buttons one of which is a cancel button and i/o field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OK_CODE LIKE SY-UCOMM,&lt;/P&gt;&lt;P&gt;SAVE_OK LIKE OK_CODE,&lt;/P&gt;&lt;P&gt;OUTPUT(8) TYPE C.&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODULE USER_COMMAND_0100 INPUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SAVE_OK = OK_CODE.&lt;/P&gt;&lt;P&gt;CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;CASE SAVE_OK.&lt;/P&gt;&lt;P&gt;WHEN 'BUTTON_EXIT'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;WHEN 'BUTTON_1'.&lt;/P&gt;&lt;P&gt;OUTPUT = 'Button 1'(001).&lt;/P&gt;&lt;P&gt;WHEN 'BUTTON_2'.&lt;/P&gt;&lt;P&gt;OUTPUT = 'Button 2'(002).&lt;/P&gt;&lt;P&gt;WHEN 'BUTTON_3'.&lt;/P&gt;&lt;P&gt;OUTPUT = 'Button 3'(003).&lt;/P&gt;&lt;P&gt;WHEN 'BUTTON_4'.&lt;/P&gt;&lt;P&gt;OUTPUT = 'Button 4'(004).&lt;/P&gt;&lt;P&gt;WHEN OTHERS.&lt;/P&gt;&lt;P&gt;OUTPUT = SAVE_OK.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this..The screen flow logic is as follows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE INIT_SCREEN_0100.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user chooses a pushbutton, the PAI event is triggered... &lt;/P&gt;&lt;P&gt;The function code&lt;/P&gt;&lt;P&gt;of the pushbutton is assigned to the screen field OK_CODE, which is then passed&lt;/P&gt;&lt;P&gt;onto the ABAP field with the same name...&lt;/P&gt;&lt;P&gt;The module USER_COMMAND_0100 is&lt;/P&gt;&lt;P&gt;then processed....&lt;/P&gt;&lt;P&gt;a text symbol is assigned to the OUTPUT field&lt;/P&gt;&lt;P&gt;according to the button that the user chose. This is displayed in the output field on&lt;/P&gt;&lt;P&gt;the screen. If the user chooses Cancel, the program ends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&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;pls reward if it helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 06:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293063#M500408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T06:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293064#M500409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use (Notice that Example programs were underlined.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) &amp;lt;b&amp;gt;Table Controls&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Control with LOOP - ENDLOOP   - &amp;lt;u&amp;gt;demo_dynpro_tabcont_loop&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PBO.&lt;/P&gt;&lt;P&gt;        flights-lines = fill.  "DESCRIBE TABLE itab LINES fill.&lt;/P&gt;&lt;P&gt;      LOOP WITH CONTROL FLIGHTS.&lt;/P&gt;&lt;P&gt;        READ TABLE itab INTO demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    PAI.&lt;/P&gt;&lt;P&gt;      LOOP WITH CONTROL FLIGHTS.&lt;/P&gt;&lt;P&gt;        lines = sy-loopc.&lt;/P&gt;&lt;P&gt;        MODIFY itab FROM demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Control with LOOP AT ITAB    - &amp;lt;u&amp;gt;demo_dynpro_tabcont_loop_at&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;             Table Control Modificatinos&lt;/P&gt;&lt;P&gt;    PBO.&lt;/P&gt;&lt;P&gt;        flights-lines = fill.  "DESCRIBE TABLE itab LINES fill.&lt;/P&gt;&lt;P&gt;        LOOP AT ITAB INTO DEMO_CONN WITH CONTROL FLIGHTS.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;    PAI.&lt;/P&gt;&lt;P&gt;        LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;           MODIFY itab FROM demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) &amp;lt;b&amp;gt;Step loops.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Step Loop - &amp;lt;u&amp;gt;demo_dynpro_step_loop&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PBO.&lt;/P&gt;&lt;P&gt;      LOOP.&lt;/P&gt;&lt;P&gt;        idx = sy-stepl + line.&lt;/P&gt;&lt;P&gt;        READ TABLE itab INTO wa INDEX idx.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    PAI.&lt;/P&gt;&lt;P&gt;      LOOP.&lt;/P&gt;&lt;P&gt;        lines = sy-loopc.&lt;/P&gt;&lt;P&gt;        idx = sy-stepl + line.&lt;/P&gt;&lt;P&gt;        MODIFY itab FROM wa INDEX idx.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) &amp;lt;b&amp;gt;ALV Grid(using FM Reuse_alv_List_Display)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) &amp;lt;b&amp;gt;ALV Grid(using FM Reuse_alv_Grid_Display)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvlist.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvlist.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) &amp;lt;b&amp;gt;ALV Grid(Using ABAP Objects, class CL_GUI_ALV_GRID)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;DEMO_ABAP_OBJECTS_CONTROLS&lt;/P&gt;&lt;P&gt;DEMO_ABAP_OBJECTS_SPLIT_SCREEN&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;Dont forget to reward all the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 06:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293064#M500409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T06:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293065#M500410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi madhuri &lt;/P&gt;&lt;P&gt;is controls tb type tabstrip is correct, it is  saying TB is not expected. syntax error.&lt;/P&gt;&lt;P&gt;pl help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 09:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293065#M500410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T09:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293066#M500411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;award points for all  the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;, and also u nees to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;mark it as Answered if ur problem is solved&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 09:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293066#M500411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T09:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293067#M500412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you sudhir for ur concern . but let me remind u that i am awarding only for the answer best suitable to me. &lt;/P&gt;&lt;P&gt;I think we should do in that way only , Right......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 13:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293067#M500412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T13:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293068#M500413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neeraj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  As per ur question to madhuri that Control TB is not there. TB is the name of tab strip control. U have to create a tabstrip control and what ever name u gave to the tabstrip that one u will define for Controls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these sites for module pool&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/dialog/dialoghome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/dialog/dialoghome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/dialog_programming.html" target="test_blank"&gt;http://www.allsaplinks.com/dialog_programming.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/TUTORIALS/default.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/default.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/spmp.pdf" target="test_blank"&gt;http://www.sappoint.com/abap/spmp.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2d40358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2d40358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/10/e7dbde82ba11d295a40000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/10/e7dbde82ba11d295a40000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/e4/2adbef449911d1949c0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/e4/2adbef449911d1949c0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/47/e07f5f2b9911d2954f0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/47/e07f5f2b9911d2954f0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/47/e07f682b9911d2954f0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/47/e07f682b9911d2954f0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fd/02da2a61d811d295750000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fd/02da2a61d811d295750000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/sld001.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/sld001.htm&lt;/A&gt; &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, 11 Jun 2007 13:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2293068#M500413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T13:57:12Z</dc:date>
    </item>
  </channel>
</rss>

