<?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: how to process batch input session through program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741003#M900476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi,&lt;/P&gt;&lt;P&gt;Thanks for solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 07:40:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T07:40:46Z</dc:date>
    <item>
      <title>how to process batch input session through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741001#M900474</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 am getting 5 batch input sessions in SM35,but  I want to process these all sessions through program without going to SM35.&lt;/P&gt;&lt;P&gt;How it is possible through Program?&lt;/P&gt;&lt;P&gt;Please Guide me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yogesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 07:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741001#M900474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T07:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to process batch input session through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741002#M900475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using RSBDCSUb prg we can do this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 07:37:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741002#M900475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T07:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to process batch input session through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741003#M900476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi,&lt;/P&gt;&lt;P&gt;Thanks for solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 07:40:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741003#M900476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T07:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to process batch input session through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741004#M900477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It's the report to run the batchinput sessions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create to B.I. session, you can execute it by transaction SM35 (but it uses rsbdcsub) or rsbdcsub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you can use it in the same program where you create B.I.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the code to fill the structures of FI batch input &lt;/P&gt;&lt;P&gt;standard....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...here it creates session... &lt;/P&gt;&lt;P&gt;SUBMIT RFBIBL00 WITH DS_NAME = VA_FILE&lt;/P&gt;&lt;P&gt;WITH CALLMODE = CALLMODE AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....here it runs session.... &lt;/P&gt;&lt;P&gt;SUBMIT RSBDCSUB WITH MAPPE = P_NAME&lt;/P&gt;&lt;P&gt;WITH VON = SY-DATUM&lt;/P&gt;&lt;P&gt;WITH BIS = SY-DATUM&lt;/P&gt;&lt;P&gt;WITH FEHLER = ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO SAP-SPOOL &lt;/P&gt;&lt;P&gt;LIST NAME P_NAME &lt;/P&gt;&lt;P&gt;LIST DATASET P_NAME &lt;/P&gt;&lt;P&gt;COVER TEXT P_NAME &lt;/P&gt;&lt;P&gt;NEW LIST IDENTIFICATION ' ' &lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 07:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-process-batch-input-session-through-program/m-p/3741004#M900477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T07:42:29Z</dc:date>
    </item>
  </channel>
</rss>

