<?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: By passing table buffer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105161#M439174</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;normally we will use it to optimize the fetching,&lt;/P&gt;&lt;P&gt;the buffer may not contain the updated data, in those times we will by pass the buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Indira.D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Apr 2007 09:10:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-19T09:10:14Z</dc:date>
    <item>
      <title>By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105155#M439168</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;What is mean by by passing table buffer ? Why it is necessary ? Which statements can do this ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105155#M439168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105156#M439169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normally we will use this by passing buffer for T tables to optimize the fetching.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use statement BYPASSING BUFFER in the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT persg         " Employee group&lt;/P&gt;&lt;P&gt;         persk         " Employee sub group&lt;/P&gt;&lt;P&gt;         trfkz         " ES grouping for collective agreement provision&lt;/P&gt;&lt;P&gt;    FROM t503&lt;/P&gt;&lt;P&gt;    BYPASSING BUFFER&lt;/P&gt;&lt;P&gt;    INTO TABLE i_t503.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105156#M439169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105157#M439170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the Smt. BYPASSING BUFFER in the select stmt. to get the most updated information about the particular data directly from the database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT ............................ BYPASSING BUFFER&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105157#M439170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105158#M439171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;bypassing buffer on the select statement when you need the most up-to-date information, for example, select * from ztxtlfa1 bypassing buffer. Doing so causes the buffer to be ignored and the data to be read directly from the database. You should use this whenever you are reading for update, that is, reading a record that will be updated and written back to the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, in step D, if user 2 used bypassing buffer to read the record, the most up-to-date version of the record would have been read and user 1's changes would not have been lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bypassing the buffer for updates provides the best balance between safety and speed. However, if you can be sure that all updates are done from a single application server, you don't need to code bypassing buffer. Bypassing the buffer does slow the update process a little because a database access is required. If you need the maximum amount of speed for updates, and if you can be sure that only one application server will be used, this alternative might work for you. Talk to your Basis consultant to find out whether it can be arranged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105158#M439171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105159#M439172</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;In by passing table buffer, we are fetching the values directly from the data base,&lt;/P&gt;&lt;P&gt;not from the buffer.&lt;/P&gt;&lt;P&gt;select *..............bypassing buffer. this is the syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105159#M439172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105160#M439173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what type of select statements by pass the buffer ? can any one give list&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 08:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105160#M439173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T08:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: By passing table buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105161#M439174</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;normally we will use it to optimize the fetching,&lt;/P&gt;&lt;P&gt;the buffer may not contain the updated data, in those times we will by pass the buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Indira.D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 09:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/by-passing-table-buffer/m-p/2105161#M439174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T09:10:14Z</dc:date>
    </item>
  </channel>
</rss>

