<?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/5423483#M1244653</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for resolving your problem you have to write BDC program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do recording for for your transaction and capture ok_code, fields and screen information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*here you have to pass values for required fields of your transaction&lt;/P&gt;&lt;P&gt;*collect data into BDCDATA table &lt;/P&gt;&lt;P&gt;loop at &amp;lt;itab&amp;gt; assigning &amp;lt;wa&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--here your have to update your internal table records one by one&lt;/P&gt;&lt;P&gt;calll transaction 'T1' using USING BDCDATA  MODE 'N' &lt;/P&gt;&lt;P&gt;                         MESSAGES INTO ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&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;Peranandam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 Mar 2009 12:48:52 GMT</pubDate>
    <dc:creator>Peranandam</dc:creator>
    <dc:date>2009-03-22T12:48:52Z</dc:date>
    <item>
      <title>module pool .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423482#M1244652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help on the follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. currently we have a transaction "T1"that can be used to manully upload the parts claim data one by  &lt;/P&gt;&lt;P&gt;    one.This is a module pool program.&lt;/P&gt;&lt;P&gt;    The selection screen has 3 fields .Comp, Org, Plant.After the value for these fields are entered &lt;/P&gt;&lt;P&gt;    we go to  screen 200  where user can enter data about the parts claimed and thus can save these&lt;/P&gt;&lt;P&gt;    data (record) after certain check into  database.&lt;/P&gt;&lt;P&gt;2. Now instead the user manually entering data on to the screen 200 of the t'code"T1" in point 1),we   &lt;/P&gt;&lt;P&gt;   have the  bulk   data eg(100) records(part claim) be entered gathered into an internal table .Now I &lt;/P&gt;&lt;P&gt;   want  enter these 100  records through screen 200  from internal table &amp;amp; save into data base .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is :In my new report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I am gathering data in internal table.&lt;/P&gt;&lt;P&gt;2. Using &lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'T1' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;            SET PARAMETER ID 'BUK' FIELD company.&lt;/P&gt;&lt;P&gt;            SET PARAMETER ID 'VKO' FIELD ORG.&lt;/P&gt;&lt;P&gt;            SET PARAMETER ID 'WRK' FIELD PLANT.&lt;/P&gt;&lt;P&gt;3. After this I will get the sceen 200.Now how do I skip this screen and directly take each record from &lt;/P&gt;&lt;P&gt;    my internal table into the internal table of T'oce "T1" and proceed the checks and save the data to   &lt;/P&gt;&lt;P&gt;    data base? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do giude.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2009 09:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423482#M1244652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-22T09:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: module pool .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423483#M1244653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for resolving your problem you have to write BDC program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do recording for for your transaction and capture ok_code, fields and screen information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*here you have to pass values for required fields of your transaction&lt;/P&gt;&lt;P&gt;*collect data into BDCDATA table &lt;/P&gt;&lt;P&gt;loop at &amp;lt;itab&amp;gt; assigning &amp;lt;wa&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--here your have to update your internal table records one by one&lt;/P&gt;&lt;P&gt;calll transaction 'T1' using USING BDCDATA  MODE 'N' &lt;/P&gt;&lt;P&gt;                         MESSAGES INTO ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&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;Peranandam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2009 12:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423483#M1244653</guid>
      <dc:creator>Peranandam</dc:creator>
      <dc:date>2009-03-22T12:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: module pool .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423484#M1244654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to add a code on the PBO of screen 200 that will check if the internal table that holds your bulk data is initial. If it is initila, then proceed to the normal transaction wherein the user inputs the data. on the other hand, if the internal table is not initial(has a content), then add a code that will loop through that intenal table and copy all its record to the internal table of your screen 200.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2009 13:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423484#M1244654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-22T13:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: module pool .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423485#M1244655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudha, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) I understood that you are using some other program to upload the data from file to your T1 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so... then develop a BDC program to pass the data to first screen and second screen. Do you have table control in screen 200, if so develop the code to pass the data to table control. Do you want to do the BDC in All screen mode? If not you 'N'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2009 14:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5423485#M1244655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-22T14:01:22Z</dc:date>
    </item>
  </channel>
</rss>

