<?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: Problem with BDC background scheduling in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319776#M509115</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;Prerequisites&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP program RSBDCSUB must be scheduled as a periodic job in the R/3 background processing system. RSBDCSUB checks for and starts any batch input sessions that have not yet been run. It schedules such sessions for immediate execution in the background processing system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Schedule RSBDCSUB to run periodically in one or more background jobs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have regularly scheduled batch input runs, you can schedule separate jobs for each of the scheduled data transfers. The start time for the RSBDCSUB job can be set according to the batch input schedule. And you can use a variant to restrict RSBDCSUB only to the batch input sessions that you expect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With RSBDCSUB, you can use all of the selection criteria offered on the batch input main menu to select sessions to run:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;session name&lt;/P&gt;&lt;P&gt;date and time of generation&lt;/P&gt;&lt;P&gt;status: ready to run or held in the queue because of errors&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch input sessions are started automatically rather than by hand. The RSBDCSUB program can be set up to start all sessions that arrive in an R/3 System, or it can be fine-tuned to start only batch input sessions that you expect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for RSBDCBTC check the link!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://sapabap.iespana.es/sap/oss/0015999.htm"&amp;gt;http://sapabap.iespana.es/sap/oss/0015999.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 May 2007 10:21:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-28T10:21:42Z</dc:date>
    <item>
      <title>Problem with BDC background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319775#M509114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I have to schedule my BDC program to rum for every one minute, I am able to run the program successfully in foreground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:  L_OPT LIKE CTU_PARAMS.

L_OPT-DISMODE = 'N'.
l_opt-updmode = 'S'.
L_OPT-RACOMMIT = 'X'.

call transaction 'IW22'
               using  BDCdata
               OPTIONS FROM L_OPT .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If i schedule immediately also its running successfully, is there any problem with the duration ,. I need to run this for every one minute. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319775#M509114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BDC background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319776#M509115</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;Prerequisites&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP program RSBDCSUB must be scheduled as a periodic job in the R/3 background processing system. RSBDCSUB checks for and starts any batch input sessions that have not yet been run. It schedules such sessions for immediate execution in the background processing system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Schedule RSBDCSUB to run periodically in one or more background jobs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have regularly scheduled batch input runs, you can schedule separate jobs for each of the scheduled data transfers. The start time for the RSBDCSUB job can be set according to the batch input schedule. And you can use a variant to restrict RSBDCSUB only to the batch input sessions that you expect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With RSBDCSUB, you can use all of the selection criteria offered on the batch input main menu to select sessions to run:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;session name&lt;/P&gt;&lt;P&gt;date and time of generation&lt;/P&gt;&lt;P&gt;status: ready to run or held in the queue because of errors&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch input sessions are started automatically rather than by hand. The RSBDCSUB program can be set up to start all sessions that arrive in an R/3 System, or it can be fine-tuned to start only batch input sessions that you expect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for RSBDCBTC check the link!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://sapabap.iespana.es/sap/oss/0015999.htm"&amp;gt;http://sapabap.iespana.es/sap/oss/0015999.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319776#M509115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BDC background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319777#M509116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply, well i have solved the problem.&lt;/P&gt;&lt;P&gt;There were so many background jobs are running in my machine, so my program was not getting a chance. I have deleted all others and gave priority as A , it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bdc-background-scheduling/m-p/2319777#M509116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:04:35Z</dc:date>
    </item>
  </channel>
</rss>

