<?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 -Table conrol with wizard in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816573#M1127269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi khushi,&lt;/P&gt;&lt;P&gt;Please see my code and do accordingly hope my code will sort ur problem as i also face the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rasheed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 08:49:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-20T08:49:52Z</dc:date>
    <item>
      <title>Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816568#M1127264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Abpaers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to create table control with wizard. I have one table ZDESIGN having foll. fields &lt;/P&gt;&lt;P&gt;NFDESIGN&lt;/P&gt;&lt;P&gt;DEPT&lt;/P&gt;&lt;P&gt;MACH_TYPE&lt;/P&gt;&lt;P&gt;CUST_NM&lt;/P&gt;&lt;P&gt;MATNR&lt;/P&gt;&lt;P&gt;MACH_NO&lt;/P&gt;&lt;P&gt;MAKTX&lt;/P&gt;&lt;P&gt;NETWORK_NO&lt;/P&gt;&lt;P&gt;QTY&lt;/P&gt;&lt;P&gt;MOD_CODE&lt;/P&gt;&lt;P&gt;STATUS&lt;/P&gt;&lt;P&gt;DVER&lt;/P&gt;&lt;P&gt;IMPL&lt;/P&gt;&lt;P&gt;PART_ST&lt;/P&gt;&lt;P&gt;RELBY&lt;/P&gt;&lt;P&gt;RELDT&lt;/P&gt;&lt;P&gt;CODE&lt;/P&gt;&lt;P&gt;Now I want to add many records at a time . Finally when i save these records it should create one number id for this . all above record should save with this number in code field. next time when i create new entry it should increment by 1.&lt;/P&gt;&lt;P&gt;                  But now when i enter 1 record  and press enter, the record disappears or if chenge in code the same record appears in all lines.&lt;/P&gt;&lt;P&gt;                  Please help me out for this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 04:36:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816568#M1127264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T04:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816569#M1127265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I hope we should create number range in SNRO t code to get default numbers when u enter item details.&lt;/P&gt;&lt;P&gt;you shd append the work area of the table control to the internal table if the values geting refreshed when u eneter the same . follow the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; LOOP AT G_TA_CONTROL_ITAB.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-CHECKBOX.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-SNO.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-MATERIAL_CODE.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-MAT_DESC.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-QTY.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-UNIT.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-DISC.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-NET.&lt;/P&gt;&lt;P&gt;      FIELD ZSD_BIDDING-WAERS.&lt;/P&gt;&lt;P&gt;      MODULE TA_CONTROL_MODIFY ON CHAIN-REQUEST.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;MODULE ta_control_modify INPUT.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING zsd_bidding TO g_ta_control_wa.&lt;/P&gt;&lt;P&gt;  MODIFY g_ta_control_itab&lt;/P&gt;&lt;P&gt;    FROM g_ta_control_wa&lt;/P&gt;&lt;P&gt;    INDEX ta_control-current_line.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    APPEND g_ta_control_wa TO g_ta_control_itab.&lt;/P&gt;&lt;P&gt;    CLEAR g_ta_control_wa.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rasheed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 04:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816569#M1127265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T04:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816570#M1127266</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;This is happening bcoz after PAI , PBO calld automatically and there is nothing defined there.&lt;/P&gt;&lt;P&gt;And again when you enter a new record the previous record that has ben there appended again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do one thing the internal table in which you have populated all the records , move all the data into the temporary internal table at the end of PAI Eg: if IT1 is your internal table and temp_It is your temporary internal table the write&lt;/P&gt;&lt;P&gt;Move-corresponding fields of IT1 to temp_IT.&lt;/P&gt;&lt;P&gt;Refresh IT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the PBO of your screen write&lt;/P&gt;&lt;P&gt;Loop at temp_it.&lt;/P&gt;&lt;P&gt;Move-correponding fields from temp_it to IT1.&lt;/P&gt;&lt;P&gt;Append IT1.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;Refresh temp_it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mudit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 04:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816570#M1127266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T04:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816571#M1127267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mudit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i enter more records only 1st record is appeared after pressing the enter and also in db table 1st record is save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI i have written a code like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move-corresponding ZDESIGN to g_TAB_CONTROL_wa.&lt;/P&gt;&lt;P&gt;  move-corresponding g_TAB_CONTROL_wa to g_TAB_CONTROL_ITAB.&lt;/P&gt;&lt;P&gt;  APPEND g_TAB_CONTROL_ITAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 07:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816571#M1127267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T07:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816572#M1127268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Mudit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after entering the records when i press enter all the records are saved in databse, but on screen on last record is displayed. What is wrong in my coding. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT g_TAB_CONTROL_ITAB .&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING g_TAB_CONTROL_itab TO zdesign.&lt;/P&gt;&lt;P&gt;  INSERT ZDESIGN.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;   REFRESH g_TAB_CONTROL_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 08:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816572#M1127268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T08:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816573#M1127269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi khushi,&lt;/P&gt;&lt;P&gt;Please see my code and do accordingly hope my code will sort ur problem as i also face the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rasheed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 08:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816573#M1127269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T08:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816574#M1127270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually the events triggered in module-pool will be like&lt;/P&gt;&lt;P&gt;PBO -&amp;gt; PAI  -&amp;gt; PBO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as per ur concern i think you have to pass the same thing into screen fields in PBO also.&lt;/P&gt;&lt;P&gt;so that when u press enter it the entered values will appeares on the screen.&lt;/P&gt;&lt;P&gt;in PBO  . inside module between loop-endloop. just write the move-corresponding statement.&lt;/P&gt;&lt;P&gt;i think it may help u .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 08:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816574#M1127270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T08:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816575#M1127271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI kushi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please understand the Module pool Program Flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI the data from screen is transferred to program&lt;/P&gt;&lt;P&gt;in PBO the data is again flows back from program to screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what ever you enter in the screen to be taken back to program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;module modify_tab_control.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in module modify_tab_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module modify_tab_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;describe table itab lines tc-lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if tc-current_line &amp;gt; tc-lines.&lt;/P&gt;&lt;P&gt;***means this is a new line which is not there in the program&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;***means a record is alreay there in the program&lt;/P&gt;&lt;P&gt;modify itab index tc-current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here try to use a number range object go to tcode SNRO where u can create a number range object,&lt;/P&gt;&lt;P&gt;then call the function module NUMBER_GET_NEXT and this will give a new number as we have seen for sale order or production order number creations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will serve your purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.Krishnamraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 09:02:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816575#M1127271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T09:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816576#M1127272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ramchander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i mentioned earlier, when i insert 4 or 5 records and press enter, all these records are updated in database table but on screen only last record is displayed. i have given my coding above. Please check and tell me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 10:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816576#M1127272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T10:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816577#M1127273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Khushi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you are using REFRESH statement means all the values are getting refreshed then only new and latest value remains.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please remove the refresh statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and more over please transfer all the rows from the screen table control to the program as i said earlier then check them thouroghly later update the values into the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 10:16:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816577#M1127273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T10:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816578#M1127274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramchnader,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i remove REFRESH stmt, the last material number is displayed in all lines of material column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 10:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816578#M1127274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T10:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816579#M1127275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Khushi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using the above code in the PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then while transferring rows from screen to progarm you need to check as follows.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;this is in PAI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;loop at itab &lt;/P&gt;&lt;P&gt;module modify_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;IN the program&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module modify_itab.&lt;/P&gt;&lt;P&gt;describe table itab lines tc-lines.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;the above code will give you number of rows.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;now&lt;/P&gt;&lt;P&gt;if tc-current_row &amp;gt; tc-lines.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;modify itab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by doing so all the rows of itab will be transferred to the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write the corresponding code in PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab with control tc.&lt;/P&gt;&lt;P&gt;***this will take the rows from program to screen&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will serve your purpse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 10:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816579#M1127275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T10:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool -Table conrol with wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816580#M1127276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 07:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-conrol-with-wizard/m-p/4816580#M1127276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T07:14:05Z</dc:date>
    </item>
  </channel>
</rss>

