<?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: How to get table record from memory before commit (after update)? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133112#M448590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Structures in my case is however empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2007 11:37:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-06T11:37:58Z</dc:date>
    <item>
      <title>How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133106#M448584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;does anybody know how to get table record from memory before commit (after update)?&lt;/P&gt;&lt;P&gt;I'm developing an user exit. In this user exit I can't do simple select command to a table becouse last record (i'm interested in this record) isn't commited to the table. So, update command to the table is proceeded, but commit command isn't. I can't simple do commit command becouse possible inconsitences may occur. So, what I would like is to get this table record from memory.&lt;/P&gt;&lt;P&gt;Can anybody help me?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Josef Motl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:09:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133106#M448584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133107#M448585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Josef,&lt;/P&gt;&lt;P&gt; In general, the information that isn't yet commited will still be avialble in the Global Structures, Fpr example in sales order exits, the header data that isn't commited will be in XVBAK and item data in XVBAP.&lt;/P&gt;&lt;P&gt;Look for similar structures in your user exit as well.&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>Fri, 06 Apr 2007 11:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133107#M448585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133108#M448586</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;The SELECT statement bypasses the buffer when you use any of the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BYPASSING BUFFER addition in the FROM clause &lt;/P&gt;&lt;P&gt;The DISTINCT addition in the SELECT clause &lt;/P&gt;&lt;P&gt;Aggregate expressions in the SELECT clause &lt;/P&gt;&lt;P&gt;Joins in the FROM clause &lt;/P&gt;&lt;P&gt;The IS NULL condition in the WHERE clause &lt;/P&gt;&lt;P&gt;Subqueries in the WHERE clause &lt;/P&gt;&lt;P&gt;The ORDER BY clause &lt;/P&gt;&lt;P&gt;The GROUP BY clause &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The FOR UPDATE addition&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So..buffer dbase table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Buffer Tables on the Application Server&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can considerably reduce the time required to access data by buffering it in the application server table buffer. Reading a single entry from table T001 can take between 8 and 600 milliseconds, while reading it from the table buffer takes 0.2 - 1 milliseconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whether a table can be buffered or not depends its technical attributes in the ABAP Dictionary. There are three buffering types: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Resident buffering&amp;lt;/b&amp;gt; (100%) The first time the table is accessed, its entire contents are loaded in the table buffer. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Generic buffering&amp;lt;/b&amp;gt; In this case, you need to specify a generic key (some of the key fields) in the technical settings of the table in the ABAP Dictionary. The table contents are then divided into generic areas. When you access data with one of the generic keys, the whole generic area is loaded into the table buffer. Client-specific tables are often buffered generically by client. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Partial buffering&amp;lt;/b&amp;gt; (single entry) Only single entries are read from the database and stored in the table buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read this if helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133108#M448586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133109#M448587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rammohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your replay. The regarding table is proprietary SAP table, so I can't change buffering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133109#M448587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133110#M448588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Josef,&lt;/P&gt;&lt;P&gt; Can you tell us which exit are you working in(and Which transaction)? &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>Fri, 06 Apr 2007 11:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133110#M448588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133111#M448589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Structures in my case is however empy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133111#M448589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133112#M448590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Structures in my case is however empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133112#M448590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133113#M448591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;transaction: vf01&lt;/P&gt;&lt;P&gt;user exit: V05NZZRK&lt;/P&gt;&lt;P&gt;table: dfkkko&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133113#M448591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133114#M448592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..Josef,&lt;/P&gt;&lt;P&gt;  try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. while updating record into dbase...&amp;lt;b&amp;gt;store (save) the same record in Application  &lt;/P&gt;&lt;P&gt;   server or in your GUI&amp;lt;/b&amp;gt; using open dataset..command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. when u want that record get it from APP server or GUI where u stored it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will helps a bit..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133114#M448592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133115#M448593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rammohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply. However, I can't put my own code to  where the table is updating.&lt;/P&gt;&lt;P&gt;What I really want is to get record from memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 11:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133115#M448593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T11:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133116#M448594</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;You can do this thing by passing all the data to the memory location as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Export data.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  EXPORT l_doc_info FROM l_doc_info&lt;/P&gt;&lt;P&gt;         TO SHARED BUFFER indx(st) FROM wa_indx ID indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after commit the data from the buffer can be picked up by &lt;/P&gt;&lt;P&gt;IMPORT l_doc_info = l_doc_info&lt;/P&gt;&lt;P&gt;       FROM SHARED BUFFER indx(st) ID indxkey TO wa_indx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can got all the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Lincon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 18:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133116#M448594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T18:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get table record from memory before commit (after update)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133117#M448595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lincon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply. However, I can't put my own code to where the table is updating becouse of restricted access.&lt;/P&gt;&lt;P&gt;What I really want is to get not-yet-commited record from memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josef&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 10:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-table-record-from-memory-before-commit-after-update/m-p/2133117#M448595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T10:13:32Z</dc:date>
    </item>
  </channel>
</rss>

