<?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: executing batch input session (SM35) same way as CALL TRANS. RACOMMIT = 'X' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810775#M1468907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Thomas, it works very well, preferred solution &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I found about RSBDCCTU (as there is no documentation, it may help people):&lt;/P&gt;&lt;P&gt;1) we have to enter the exact name and ID (just get it from SM35). If we let the ID blank, when we execute, a popup dialog is displayed to show all existing SHDB recordings which satisfy the name. SM35 sessions, unfortunately, are not selected.&lt;/P&gt;&lt;P&gt;2) It does a copy of SM35 data and runs it as a standalone CALL TRANSACTION. It means that it doesn't update the session status and log in SM35.&lt;/P&gt;&lt;P&gt;3) The log is displayed as an ALV&lt;/P&gt;&lt;P&gt;4) It may run in background, the ALV is displayed as a spool&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Mar 2010 16:15:13 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2010-03-24T16:15:13Z</dc:date>
    <item>
      <title>executing batch input session (SM35) same way as CALL TRANS. RACOMMIT = 'X'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810772#M1468904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one colleague of mine has developped an LSMW which generates a batch input session (SM35). Unfortunately, it doesn't work because several COMMIT WORK occur (it stops at the COMMIT WORK). This is the same behavior as with CALL TRANSACTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with this latter, it's possible to set the option RACOMMIT = 'X' which let the batch input continue even if COMMIT WORK occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know a way to do it with SM35, or do you have a custom program or know a standard program which runs the session with CALL TRANSACTION statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 14:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810772#M1468904</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-24T14:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: executing batch input session (SM35) same way as CALL TRANS. RACOMMIT = 'X'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810773#M1468905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;program RSBDCCTU looks promising, you need the queue ID of the session (table APQI).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't try it here, so this is at your own risk &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 15:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810773#M1468905</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2010-03-24T15:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: executing batch input session (SM35) same way as CALL TRANS. RACOMMIT = 'X'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810774#M1468906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Workaround:&lt;/P&gt;&lt;P&gt;1) run BDC_RECORD_PLAY function module (usually run with SHDB) to run the batch input session (you have to get the ID and the session name from SM35). A screen is displayed to enter parameters, RACOMMIT especially. It runs in dialog, so there shouldn't be too much work to do, otherwise timeout may occur.&lt;/P&gt;&lt;P&gt;2) add break-point on start of BDC_OBJECT_SELECT function module, start SHDB transaction. On the break-point, change DATATYPE from %BDC to BDC (you may have to repeat each time the break-point is reached). Select your session and execute it. The same dialog (as above) is displayed to choose options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I let the thread opened for 24 hours if you have other suggestions.&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 15:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810774#M1468906</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-24T15:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: executing batch input session (SM35) same way as CALL TRANS. RACOMMIT = 'X'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810775#M1468907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Thomas, it works very well, preferred solution &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I found about RSBDCCTU (as there is no documentation, it may help people):&lt;/P&gt;&lt;P&gt;1) we have to enter the exact name and ID (just get it from SM35). If we let the ID blank, when we execute, a popup dialog is displayed to show all existing SHDB recordings which satisfy the name. SM35 sessions, unfortunately, are not selected.&lt;/P&gt;&lt;P&gt;2) It does a copy of SM35 data and runs it as a standalone CALL TRANSACTION. It means that it doesn't update the session status and log in SM35.&lt;/P&gt;&lt;P&gt;3) The log is displayed as an ALV&lt;/P&gt;&lt;P&gt;4) It may run in background, the ALV is displayed as a spool&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 16:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/executing-batch-input-session-sm35-same-way-as-call-trans-racommit-x/m-p/6810775#M1468907</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-24T16:15:13Z</dc:date>
    </item>
  </channel>
</rss>

