<?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: why do we need  a session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941089#M388499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bcoz &lt;/P&gt;&lt;P&gt; we can process the session in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.back ground or foreground&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.The maximum time allowed for online execution should not exceed 300 seconds.  User gets TIMEOUT error and an aborted transaction, if time for execution exceeds 300 seconds. To avoid these types of error.&lt;/P&gt;&lt;P&gt;use session .&lt;/P&gt;&lt;P&gt;3. u can schedule it (job).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Feb 2007 17:41:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-23T17:41:51Z</dc:date>
    <item>
      <title>why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941083#M388493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in bdc session method we create a session by bdc_open_group , i want to know the exact functionality in creating this session .we procees this session in t code sm35.we r processing means it is updating the database,is that right. &lt;/P&gt;&lt;P&gt;  thank u in advance......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:50:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941083#M388493</guid>
      <dc:creator>former_member644292</dc:creator>
      <dc:date>2007-02-20T18:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941084#M388494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes, when we processing the Session, it is nothing but we are enbtering the records in the Transaction(Database) and pressing the Savfe button, if we do the same thing manuvally it will take time so instead of this we do the BDC(Session method)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941084#M388494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T18:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941085#M388495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chaitanya,&lt;/P&gt;&lt;P&gt;  Creating a Session means that we are creating keeping the data to be uploaded in a format that can be readily made available to the transaction(One record at a time). This process can be thought of the the programatic equivalent of creating the records through transaction. Creating the session will not update the database as you already noticed. Just that we are keepinng the data ready in an internal table with the BDCDATA structure.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:55:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941085#M388495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T18:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941086#M388496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi chaitanya,&lt;/P&gt;&lt;P&gt;    Batch input method is used to transfer data from internal table to database table through sessions.&lt;/P&gt;&lt;P&gt;    Session is nothing but a intermediate step between internal table and database table. Data along with its action is stored in the session.&lt;/P&gt;&lt;P&gt;     Unless u process the session, the data is not transferred to database table.&lt;/P&gt;&lt;P&gt;So v r using the t/c SM35 to process the session, in order transfer the data into the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 19:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941086#M388496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T19:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941087#M388497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;sessions are actually processed from the session queue sm35..So inorder to place the session in queue we need to create the same using bdc_open_group.&lt;/P&gt;&lt;P&gt;Without this you cannot process the session..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 21:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941087#M388497</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-02-20T21:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941088#M388498</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;if you have to write something on to the file ...first step will be opening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in session method also first open the session using function module&lt;/P&gt;&lt;P&gt;BDC_OPEN_GROUP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data is transferred to session by BDC_insert.&lt;/P&gt;&lt;P&gt;this function creates the session through the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember session is an intermediated step between internal table and database table. Data along with its action is stored in session ie data for screen fields,to which screen it is passes,the program name,and how the next screen is processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unless session is processed, the data is not transfered to database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_ClOSE_GROUP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 02:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941088#M388498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T02:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: why do we need  a session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941089#M388499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bcoz &lt;/P&gt;&lt;P&gt; we can process the session in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.back ground or foreground&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.The maximum time allowed for online execution should not exceed 300 seconds.  User gets TIMEOUT error and an aborted transaction, if time for execution exceeds 300 seconds. To avoid these types of error.&lt;/P&gt;&lt;P&gt;use session .&lt;/P&gt;&lt;P&gt;3. u can schedule it (job).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 17:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-need-a-session/m-p/1941089#M388499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T17:41:51Z</dc:date>
    </item>
  </channel>
</rss>

