LO Exraction Part 2
LO Exraction Part 2
Update Logic
Applies to:
SAP BI, NW2004s Business Intelligence, ABAP, BI For more information, visit the EDW homepage.
Summary
This article explains about LO extraction logic, architecture and background tables involved.
Author : P. Renjith Kumar
Company : SAP Labs India
Created on : 1 January 2010
Author Bio
P Renjith Kumar is presently working in SAP Labs India Pvt Ltd and specializes in
Extraction and Modeling areas of BI. Basically as an ABAP consultant, he has extensive
cross functional experience and has been with end to end SAP ERP and BI
implementation projects across manufacturing domain.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 1
LO Extraction – Part 2 Database Update Logic
Table of Contents
Prerequisite................................................................................................................................................... 3
Introduction ................................................................................................................................................... 3
The update process ...................................................................................................................................... 3
V1 and V2 Update Modules........................................................................................................................... 4
Update Request ............................................................................................................................................ 5
Transactions and Logical Units of Work......................................................................................................... 6
LUW: Logical Unit of Work: ........................................................................................................................... 7
DB LUW........................................................................................................................................................ 7
SAP LUW ..................................................................................................................................................... 8
The Update Mechanism: ............................................................................................................................... 8
How to check update status .......................................................................................................................... 8
Update status.............................................................................................................................................. 12
Related Content .......................................................................................................................................... 13
Copyright .................................................................................................................................................... 14
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 2
LO Extraction – Part 2 Database Update Logic
Prerequisite
Once you are done with the first part of the article you can understand this article clearly. You can find the
first part here.
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1034bcbe-b459-2d10-2a89-ecdeb4e53ff1
Introduction
This part deals with the LO extraction logic, its architecture, working mechanism and background tables and
reports involved.
.
After the transaction has been processed, the dialog process completes the VBHDR entry (the update
header of the update request) and searches an update server for the V1 update
The update server distributes the tasks to an update work process. This processes the V1 modules of the
update request, triggers a COMMIT to the database, and releases the SAP locks on the update request The
work process then searches for an update server for the V2 update, providing V2 update modules exist.
A V2 update server then passes this onto a V2 work process, which processes the V2 modules and triggers
a COMMIT to the database.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 3
LO Extraction – Part 2 Database Update Logic
Processing the V1 modules involves transferring the contents of the update tables VBMOD and VBDATA to
the application tables of the database. The changes are not actually made to the tables in the database until
the database LUW in which this takes place is completed. The SAP locks are released and, if V2 update
modules exist, the V2 update is started. This is similar to the V1 update with the exception that there are no
locks that have to released and no search for a process for further processing.
Now we need to see about V1 and V2 updates in detail
An update is divided into different modules. Each module corresponds to an update function module.
The SAP System makes a distinction between primary, time-critical (V1) and secondary, non-time-critical
(V2) update modules. The system also supports collective runs for function modules that are used on a
regular basis.
This distinction allows the system to process critical database changes before less critical changes.
V1 modules describe critical or primary changes; these affect objects that have a controlling
function in the SAP System, for example order creation or changes to material stock.
V2 modules describe less critical secondary changes. These are pure statistical updates, for
example, such as result calculations.
The V1 modules are processed consecutively in a single update work process on the same application
server. This means that they belong to the same database LUW and can be reversed. Furthermore, V1
updates are carried out under the SAP locks of the transaction that creates the update. This ensures that the
data remains consistent; simultaneous changes to the objects to be updated are not possible.
All V2 updates are carried out in a separate LUW and not under the locks of the transaction that creates
them. If your SAP System contains a work process for V2 updates, these are only carried out in this work
process. If this is not the case, the V2 components are processed by a V1 update process.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 4
LO Extraction – Part 2 Database Update Logic
Update Request
An update request or update record describes the data changes defined in an SAP LUW, which are carried
out either in full or not at all (in a database LUW). (This only applies to V1 updates. V2 updates are triggered
once the V1 update has been completed, and therefore take place in a separate database LUW.)
An update request comprises an update header, V1 modules (or components), V2 modules and a collective
run.
An update module corresponds to a function module, and contains the update data and, in certain cases,
error information, which is generated if the update is canceled.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 5
LO Extraction – Part 2 Database Update Logic
The following update tables in the database contain the following information:
In everyday language, a transaction is a sequence of actions that logically belong together in a business
sense and those either procure or process data. It covers a self-contained procedure, for example,
generating a list of customers, creating a flight booking, or sending reminders to customers. From the user’s
viewpoint, it forms a logical unit.
The completeness and correctness of data must be assured within this unit. In the middle of a transaction,
the data will usually be inconsistent. For example, when you transfer an amount in financial accounting, this
must first be deducted from one account before being credited to another. In between the two postings, the
data is inconsistent, since the amount that you are posting does not exist in either account. It is essential for
application programmers to know that their data is consistent at the end of the transaction. If an error occurs,
it must be possible to undo the changes made within a logical process.
In the R/3 System, there are three terms frequently used in this context:
A database LUW is the mechanism used by the database to ensure that its data is always consistent.
SAP LUW
An SAP LUW is a logical unit consisting of dialog steps, whose changes are written to the database in a
single database LUW.
SAP Transaction
An SAP transaction is an application program that you start using a transaction code. It may contain one or
more SAP LUWs.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 6
LO Extraction – Part 2 Database Update Logic
DB LUW
From the point of view of database programming, a database LUW is an inseparable sequence of database
operations that ends with a database commit. The database LUW is either fully executed by the database
system or not at all. Once a database LUW has been successfully executed, the database will be in a
consistent state. If an error occurs within a database LUW, all of the database changes since the beginning
of the database LUW are reversed. This leaves the database in the state it was in before the transaction
started.
The database changes that occur within a database LUW are not actually written to the database until after
the database commit. Until this happens, you can use a database rollback to reverse the changes. In the R/3
System, database commits and rollbacks can be triggered either implicitly or using explicit commands.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 7
LO Extraction – Part 2 Database Update Logic
SAP LUW
The Open SQL statements INSERT, UPDATE, MODIFY, and DELETE allow you to program database
changes that extend over several dialog steps. Even if you have not explicitly programmed a database
commit, the implicit database commit that occurs after a screen has been processed concludes the database
LUW. The following diagram shows the individual database LUWs in a typical screen sequence:
Note
A logical unit consisting of dialog steps, whose changes are written to the database in a single database LUW is called
an SAP LUW. Unlike a database LUW, an SAP LUW can span several dialog steps, and be executed using a
series of different work processes. If an SAP LUW contains database changes, you should either write all of them
or none at all to the database. To ensure that this happens, you must include a database commit when your
transaction has ended successfully, and a database rollback in case the program detects an error.
1. Start Update System Administration. To do this, choose Tools > Administration > Monitor
> Update. Alternatively enter transaction code SM13.
2. Check if the update is active. One of the following messages is output at the bottom of the
initial screen of the Update System:
o Update is active
o Update is deactivated
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 8
LO Extraction – Part 2 Database Update Logic
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 9
LO Extraction – Part 2 Database Update Logic
Here if you double click on first one you will see the detailed info.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 10
LO Extraction – Part 2 Database Update Logic
Similarly you can find the records that are yet to be updated
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 11
LO Extraction – Part 2 Database Update Logic
Update status
Status Phase
initial The update request has been created, but has not yet been completely
processed. (This status applies from the moment the dialog work
process transfers the update request to the update work process to the
COMMIT in the update work process).
Error An error occurred in the init phase, which prevents the update from
being carried out.
Error (no The update request has been canceled and the update cannot be
retry) repeated.
V1 processed The init phase has been successfully completed, and the V2
modules are being passed on for further processing. If no V2 modules
exist, this update request no longer appears in the overview.
V2 processed The V2 modules have also been processed correctly, but there is still a
collective run (can be regarded as V3) to be carried out.
Enqueues The SAP locks belonging to this update request were manually deleted
deleted (SM12).
Like this you can identify the status of the update records.
In my next part I will explain about the LO extractors and their working logic…..
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 12
LO Extraction – Part 2 Database Update Logic
Related Content
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1034bcbe-b459-2d10-2a89-ecdeb4e53ff1
For more information, visit the EDW homepage
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 13
LO Extraction – Part 2 Database Update Logic
Copyright
© Copyright 2010 SAP AG. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG.
The information contained herein may be changed without prior notice.
Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors.
Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation.
IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9,
iSeries, pSeries, xSeries, zSeries, eServer, z/VM, z/OS, i5/OS, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server,
PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes,
BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX,
Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation.
Linux is the registered trademark of Linus Torvalds in the U.S. and other countries.
Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems
Incorporated in the United States and/or other countries.
Oracle is a registered trademark of Oracle Corporation.
UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group.
Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of
Citrix Systems, Inc.
HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C®, World Wide Web Consortium, Massachusetts
Institute of Technology.
Java is a registered trademark of Sun Microsystems, Inc.
JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by
Netscape.
SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other SAP products and services mentioned
herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries.
Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and
other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered
trademarks of Business Objects S.A. in the United States and in other countries. Business Objects is an SAP company.
All other product and service names mentioned are the trademarks of their respective companies. Data contained in this docume nt
serves informational purposes only. National product specifications may vary.
These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("S AP
Group") for informational purposes only, without representation or warranty of any kind, and SAP Gro up shall not be liable for errors or
omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the
express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an
additional warranty.
SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG 14