<?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: Batch input session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915034#M1147334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In cricket it is known as Life Ban.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Dec 2008 19:11:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-21T19:11:42Z</dc:date>
    <item>
      <title>Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915028#M1147328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the function modules that are used when creating the batch input session?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 08:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915028#M1147328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T08:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915029#M1147329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The three SAP function modules used for creating batch input sessions are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. BDC_OPEN_GROUP - is used to create the batch input session and will contain general data that is used for the entire session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. BDC_INSERT - is used to actually insert all of the data into a session that is required for a transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. BDC_CLOSE_GROUP - is used to close the batch input session after all of the data has been inserted and session is ready for processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best Regards,&lt;/P&gt;&lt;P&gt;Shakti Barath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 08:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915029#M1147329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T08:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915030#M1147330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shame on you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 09:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915030#M1147330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T09:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915031#M1147331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATING A SESSION WITH BDC_OPEN_GROUP :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the B&lt;STRONG&gt;DC_OPEN_GROUP&lt;/STRONG&gt; function module to do the following create a new session. Once you have created a session, then you can insert batch input data into it with BDC_INSERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot re-open a session that already exists and has been closed. If you call BDC_OPEN_GROUP with the name of an existing session, then an additional session with the same name is created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A batch input program may have only one session open at a time. Before opening a session, make sure that any sessions that the program closes any sessions that it previously had opened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_OPEN_GROUP takes the following EXPORTING parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLIENT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client in which the session is to be processed.&lt;/P&gt;&lt;P&gt;Default: If you don't provide a value for this parameter, the default is the client under which the batch input program runs when the session is created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GROUP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name of the session that is to be created. May be up to 12 characters long.&lt;/P&gt;&lt;P&gt;Default: None. You must specify a session name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;HOLDDATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lock date. The session is locked and may not be processed until after the date that you specify.Only a system administrator with the LOCK authorization for the authorization object Batch Input Authorizations can unlock and run a session before this date.&lt;/P&gt;&lt;P&gt;Format: YYYYMMDD (8 digits).&lt;/P&gt;&lt;P&gt;Default: No lock date, session can be processed immediately. A lock date is optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;KEEP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Retain session after successful processing. Set this option to the value X to have a session kept after it has been successfully processed. A session that is kept remains in the input/output queue until an administrator deletes it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sessions that contain errors in transactions are kept even if KEEP is not set.&lt;/P&gt;&lt;P&gt;Default: If not set, then sessions that are successfully processed are deleted. Only the batch input log is kept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;USER&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Authorizations user for background processing. This is the user name that is used for checking authorizations if a session is started in background processing. The user must be authorized for all of the transactions and functions that are to be executed in a session.Otherwise, transactions will be terminated with "no authorization" errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user can be of type dialog or background. Dialog users are normal interactive users in the SAP System. Background users are user master records that are specially defined for providing authorizations for background processing jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADDING DATA TO A SESSION: BDC_INSERT :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the BDC_INSERT function module to add a transaction to a batch input session. You specify the transaction that is to be started in the call to BDC_INSERT. You must provide a BDCDATA structure that contains all of the data required to process the transaction completely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_INSERT takes the following parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TCODE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code of the transaction that is to be run.&lt;/P&gt;&lt;P&gt;For help in finding the transaction code of a function, see Analyzing SAP Transactions(4) .&lt;/P&gt;&lt;P&gt;TCODE is an EXPORTING parameter in the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;POST_LOCAL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter to update data locally. If POST_LOCAL = 'X', data will be updated locally.(refer to the keyword documentation of SET UPDATE TASK LOCAL for more information)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DYNPROTAB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BDCDATA structure that contains the data that is to be processed by the transaction.&lt;/P&gt;&lt;P&gt;DYNPROTAB is a tables parameter in the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSING A SESSION: BDC_CLOSE_GROUP :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the BDC_CLOSE_GROUP function module to close a session after you have inserted all of your batch input data into it. Once a session is closed, it can be processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_CLOSE_GROUP needs no parameters. It automatically closes the session that is currently open in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must close a session before you can open another session from the same program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, you may to use the alternate method, CALL TRANSACTION USING, if your batch input sessions cannot run quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Rakesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 17:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915031#M1147331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T17:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915032#M1147332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rakesh,&lt;/P&gt;&lt;P&gt;The first two posters in this thread are alleged to be involved in points gaming and the moderator has notified in one of the other threads that their user id's will be deleted,&lt;/P&gt;&lt;P&gt;but u still responded to that question in that same post(which was regarding collect statement)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;And here again u answer them, and that too with copy pasted material&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the material posted by u is from sap help&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fa/097126543b11d1898e0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fa/097126543b11d1898e0000e8322d00/frameset.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;see if u find something on sap help then posting that link is fine but copy pasting that material is strictly against forum rules and totally unacceptable.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 17:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915032#M1147332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T17:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915033#M1147333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe in cricket this is known as a hatrick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Three ducks in a row... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 18:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915033#M1147333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T18:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915034#M1147334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In cricket it is known as Life Ban.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Dec 2008 19:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-session/m-p/4915034#M1147334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-21T19:11:42Z</dc:date>
    </item>
  </channel>
</rss>

