<?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: some BDC question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-bdc-question/m-p/3059360#M724600</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;1.You are running a report. It is taking long time for &lt;/P&gt;&lt;P&gt;execution. What steps will you do to reduce the &lt;/P&gt;&lt;P&gt;execution time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first find out the where it is taking time by going to into the debuging mode , here you will know at what step it is taking time , if it is a standard program then ask your basisi people to reduce the parameter load to increase the xecutuion time , if it is a z program then you can change the code where that taking time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.After running a BDC program in background, next &lt;/P&gt;&lt;P&gt;day morning when you see the results, few records &lt;/P&gt;&lt;P&gt;are not updated(error records). What will you do &lt;/P&gt;&lt;P&gt;then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to update that eroors again &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.You are given functional specs for a BDC program &lt;/P&gt;&lt;P&gt;and you need to decide whether to write a method &lt;/P&gt;&lt;P&gt;call transaction or a session. How u will decide?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any error occurs in a call transaction method, the user can either remove it at the same time (mode 'E') else, that record is discarded and all other records are updated in the database..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, session method does not update the database till the session is completed successfully.. It can be rescheduled after removing the error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However we can not reschedule the call transaction.. call transaction fast as compared to session method..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In session method we can pass data to multiple transactions.. in call transaction.. only to one..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I came across a requirement that no record should be updated if there is even a single error record.. in that case i used session method..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;online process used for call transcation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;back ground job run used for session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.What is the difference between report and script? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both are used display output in a list but the main diffrence is output devise is there in script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Nov 2007 05:18:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-25T05:18:23Z</dc:date>
    <item>
      <title>some BDC question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-bdc-question/m-p/3059359#M724599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sir, plz help me to find out answer of the following question .&lt;/P&gt;&lt;P&gt;1.You are running a report. It is taking long time for &lt;/P&gt;&lt;P&gt;execution. What steps will you do to reduce the &lt;/P&gt;&lt;P&gt;execution time.&lt;/P&gt;&lt;P&gt;2.After running a BDC program in background, next &lt;/P&gt;&lt;P&gt;day morning when you see the results, few records &lt;/P&gt;&lt;P&gt;are not updated(error records). What will you do &lt;/P&gt;&lt;P&gt;then?&lt;/P&gt;&lt;P&gt;3.You are given functional specs for a BDC program &lt;/P&gt;&lt;P&gt;and you need to decide whether to write a method &lt;/P&gt;&lt;P&gt;call transaction or a session. How u will decide?&lt;/P&gt;&lt;P&gt;4.What is the difference between report and script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 00:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-bdc-question/m-p/3059359#M724599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-25T00:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: some BDC question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-bdc-question/m-p/3059360#M724600</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;1.You are running a report. It is taking long time for &lt;/P&gt;&lt;P&gt;execution. What steps will you do to reduce the &lt;/P&gt;&lt;P&gt;execution time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first find out the where it is taking time by going to into the debuging mode , here you will know at what step it is taking time , if it is a standard program then ask your basisi people to reduce the parameter load to increase the xecutuion time , if it is a z program then you can change the code where that taking time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.After running a BDC program in background, next &lt;/P&gt;&lt;P&gt;day morning when you see the results, few records &lt;/P&gt;&lt;P&gt;are not updated(error records). What will you do &lt;/P&gt;&lt;P&gt;then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to update that eroors again &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.You are given functional specs for a BDC program &lt;/P&gt;&lt;P&gt;and you need to decide whether to write a method &lt;/P&gt;&lt;P&gt;call transaction or a session. How u will decide?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any error occurs in a call transaction method, the user can either remove it at the same time (mode 'E') else, that record is discarded and all other records are updated in the database..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, session method does not update the database till the session is completed successfully.. It can be rescheduled after removing the error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However we can not reschedule the call transaction.. call transaction fast as compared to session method..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In session method we can pass data to multiple transactions.. in call transaction.. only to one..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I came across a requirement that no record should be updated if there is even a single error record.. in that case i used session method..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;online process used for call transcation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;back ground job run used for session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.What is the difference between report and script? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both are used display output in a list but the main diffrence is output devise is there in script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 05:18:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-bdc-question/m-p/3059360#M724600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-25T05:18:23Z</dc:date>
    </item>
  </channel>
</rss>

