SlideShare a Scribd company logo
3
Most read
5
Most read
6
Most read
Record Mode Concept in Delta
 Management




Applies to:
SAP BI 2004s or SAP BI 7.x. For more information, visit the Business Intelligence homepage.

Summary
This document explains the recordmode concept which describes how changes to data records are recorded
during delta processing.

Author:     Apeksha Maniar
Company: L&T Infotech
Created on: 04 January 2010

Author Bio:
Apeksha Maniar, working in L&T Infotech has an experience of more than 3 years in SAP BI. She has been
a part of Production Support, Development and Implementation Projects.




SAP COMMUNITY NETWORK                SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                    1
Record Mode Concept in Delta Management




Table of Contents
What is Delta? .................................................................................................................................................... 3
0recordmode ....................................................................................................................................................... 3
   The values for 0recordmode ........................................................................................................................... 3
How do we identify the Delta? ............................................................................................................................ 4
How Data is Brought to BI .................................................................................................................................. 5
   ABR: After Before and Reverse Image ........................................................................................................... 5
      Example of ABR Delta Process ................................................................................................................................... 5
   AIE/AIM: After Image Delta Process ............................................................................................................... 6
      Example of AIE/AIM Delta Process.............................................................................................................................. 6
   ADD: Additive Delta Process .......................................................................................................................... 7
      Example of ADD Delta Process ................................................................................................................................... 7
Related Content .................................................................................................................................................. 7
Disclaimer and Liability Notice ............................................................................................................................ 8




SAP COMMUNITY NETWORK                                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                                         2
Record Mode Concept in Delta Management




What is Delta?
Delta is a feature of the extractor, which refers to the changes (new/modified entries), occurred in the Source
System.

0recordmode
The record mode describes the type of change that a data record contains.
If a datasource is delta capable, the field ROCANCEL which is part of the datasource, holds the changes
from R/3 side.
This field for the DataSource is assigned to the InfoObject 0RECORDMODE in the BI system.
ROCANCEL serves the same purpose at R/3 side which its counterpart 0RECORDMODE does at BW side.

The values for 0recordmode




Figure 1


The following 6 Record Mode types are available, which identify how a delta record is updated to the data
target:
After-image ‘ ‘ :
The record provides an after image, i.e. how does the record look like after the change.
The status of the record after it has been changed, or after data has been added is transferred.
Before-image ‘X’ :
The record provides a before image, i.e. what did the record look like before the change.
The status of the record before the change is transferred.
Add ‘A’ :
The record provides an additive image. Only the differences for all the numeric values are available.
Delete ‘D’ :
This recordmode type signifies that the record must be deleted.
New Image ‘N’ :
The record provides a new image, i.e. when a new record is created; a new image is set for it.
Reverse Image ‘R’ :
The record provides a reverse image. The content of this record is equivalent to a before image. The only
difference occurs when updating a DataStore object: An existing record with the same key is deleted.




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                         3
Record Mode Concept in Delta Management


How do we identify the Delta?
The delta process (how the data is transferred) for the DataSource is determined in the table ROOSOURCE
(in the source system) or in the table RSOLTPSOURCE (in BI for DataSources 3.x) or in the table RSDS (in
BI for DataSources) respectively
Properties of the delta process are determined in the table RODELTAM (in BI or in the source system)




Figure 2




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                         4
Record Mode Concept in Delta Management




How Data is Brought to BI
Data is brought (extracted) to BI using one of the following delta processes:
    ABR: After before and Reverse image
    AIE/AIM: After image
    ADD: Additive image

ABR: After Before and Reverse Image
What is it?
Once a new entry is posted or an existing posting is changed at R/3 side, an after image shows the status
after the change, a before image shows the status before the change with a negative sign and the reverse
image shows the negative sign next to the record while indicating it for deletion.
What update type (for key figures) it supports?
          Addition
          Overwrite

Does it support loading to both infocube and DSO?
YES

Example of ABR Delta Process
Let us consider a scenario to demonstrate the ABR Delta Process.
Since it can be used for both Infocube and DSO, let us consider a scenario where in the loading
happens directly to DSO, with the advantage that we can track the record changes in change log table for
the DSO.
In our case, the DSO is set to additive mode so that the data source sends both before and after image.
Incase if it is set to overwrite, it sends only after image.
Let us check the new entry in DSO.
As shown below (Figure 3), the recordmode has the value N (New entry), indicating that this record is a new
one.
Here, the CRM Gross Weight (CRM_GWEIGH) field has the initial value 4,093.




Figure 3


Next, the value of CRM gross weight (CRM_GWEIGH) is changed to 5,360 in the source system.
In order to reflect this change, the data source will send two entries to BI:
One is before image with negative sign to nullify the initial value (Figure 4).




Figure 4




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                         5
Record Mode Concept in Delta Management



And the other one is after image entry (modified value) as shown below (Figure 5).




Figure 5

Upon activation, the after image goes to active table (Figure 6).



Figure 6



AIE/AIM: After Image Delta Process
What is it?
Once a new entry is posted or an existing posting is changed at R/3 side, an after image shows the status
after the change.
What update type (for key figures) it supports?
Overwrite Only
Does it support loading to both infocube and DSO?
No, only DSO

Example of AIE/AIM Delta Process
Let us consider the example given above.
The initial load to the target DSO is as shown in Figure 7.




Figure 7


This time after the value of CRM_GWEIGH is changed to 5,360 in the source system, the datasource sends
only one entry to BI, i.e. the After Image, which will hold the change as shown below (Figure 8).




Figure 8


Upon activation, the after image goes to active table (Figure 9).



Figure 9




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                         6
Record Mode Concept in Delta Management



ADD: Additive Delta Process
What is it?
Once a new entry is posted or an existing posting is changed at R/3 side, an additive image shows the
difference between the numeric values.
What update type (for key figures) it supports?
Addition Only
Does it support loading to both infocube and DSO?
YES (In case the DSO has Update type Addition)

Example of ADD Delta Process
Again consider the above scenario.
The initial load to the target DSO is as shown in Figure 10.




Figure 10


When the value of CRM_GWEIGH is changed to 5,360 in the source system, the datasource sends one
entry to BI with the CRM_GWEIGH value 1,267, i.e. the Difference between the new value and the original
value as shown below (Figure 11).




Figure 11


Upon activation, the final entry in active table is the result of the addition of the original value and the new
value (4093+1267=5360) KG (Figure 12).



Figure 12



Related Content
For more information, visit Data Extraction from SAP Source Systems
For more information, visit the Business Intelligence homepage.




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                         7
Record Mode Concept in Delta Management




Disclaimer and Liability Notice
This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not
supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade.
SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document,
and anyone using these methods does so at his/her own risk.
SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or
code sample, including any liability resulting from incompatibility between the content within this document and the materials and
services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this
document.




SAP COMMUNITY NETWORK                            SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                                8

More Related Content

PDF
データベース13 - トランザクションと障害回復
PPTX
アンケートを即可視化!~MS Forms ⇒ MS Flow ⇒ Power BI~
PPTX
Power BI のいろいろな活用パターン
PDF
Tableau活用4年の軌跡
PDF
MesonでPostgreSQLをビルドしてみよう!(第39回PostgreSQLアンカンファレンス@オンライン 発表資料)
PPTX
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
PPTX
H2O Waveを使ったAIアプリケーション作成入門
PDF
[D35] インメモリーデータベース徹底比較 by Komori
データベース13 - トランザクションと障害回復
アンケートを即可視化!~MS Forms ⇒ MS Flow ⇒ Power BI~
Power BI のいろいろな活用パターン
Tableau活用4年の軌跡
MesonでPostgreSQLをビルドしてみよう!(第39回PostgreSQLアンカンファレンス@オンライン 発表資料)
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
H2O Waveを使ったAIアプリケーション作成入門
[D35] インメモリーデータベース徹底比較 by Komori

What's hot (20)

PDF
データ分析を支える技術 データ分析基盤再入門
PPTX
分析指向データレイク実現の次の一手 ~Delta Lake、なにそれおいしいの?~(NTTデータ テクノロジーカンファレンス 2020 発表資料)
PPTX
Power BI をシステムやアプリ開発と一緒に使うなら…~リアルタイムストリーミングの使い方~
PPTX
情報の伝え方が変わる!Power BIでレポートを作ってみよう(前半戦)
PPTX
第45回elasticsearch勉強会 BERTモデルを利用した文書分類
PDF
Webアプリを並行開発する際のマイグレーション戦略
PPTX
え、毎月手作業でレポートを作ってるの?Power BI を使えば自動化できますよ!
PDF
Sosiaalisen median katsaus 02/2024
PPTX
え!? Power BI の画面からデータ更新なんてできるの!? ~PowerApps カスタムビジュアルの可能性~
PDF
Azure Synapse Analytics 専用SQL Poolベストプラクティス
PDF
PostgreSQLのバグとの付き合い方 ~バグの調査からコミュニティへの報告、修正パッチ投稿まで~(PostgreSQL Conference Japa...
PDF
CRC-32
PDF
REST API マスターへの道 - Office 365 パワーユーザー向け
PDF
バックアップと障害復旧から考えるOracle Database, MySQL, PostgreSQLの違い
PPTX
Power bi勉強会 1202_小林
PPTX
開発者におくる Power BI を使う時に考えるべきアーキテクチャ ~ データを溜めるのは誰だ? ~
PDF
Part 0: 製造リファレンス・アーキテクチャとは?(製造リファレンス・アーキテクチャ勉強会)
PDF
データ基盤の従来~最新の考え方とSynapse Analyticsでの実現
PDF
データファブリック実現のためのプロジェクトの進め方とは
PDF
片手間MySQLチューニング戦略
データ分析を支える技術 データ分析基盤再入門
分析指向データレイク実現の次の一手 ~Delta Lake、なにそれおいしいの?~(NTTデータ テクノロジーカンファレンス 2020 発表資料)
Power BI をシステムやアプリ開発と一緒に使うなら…~リアルタイムストリーミングの使い方~
情報の伝え方が変わる!Power BIでレポートを作ってみよう(前半戦)
第45回elasticsearch勉強会 BERTモデルを利用した文書分類
Webアプリを並行開発する際のマイグレーション戦略
え、毎月手作業でレポートを作ってるの?Power BI を使えば自動化できますよ!
Sosiaalisen median katsaus 02/2024
え!? Power BI の画面からデータ更新なんてできるの!? ~PowerApps カスタムビジュアルの可能性~
Azure Synapse Analytics 専用SQL Poolベストプラクティス
PostgreSQLのバグとの付き合い方 ~バグの調査からコミュニティへの報告、修正パッチ投稿まで~(PostgreSQL Conference Japa...
CRC-32
REST API マスターへの道 - Office 365 パワーユーザー向け
バックアップと障害復旧から考えるOracle Database, MySQL, PostgreSQLの違い
Power bi勉強会 1202_小林
開発者におくる Power BI を使う時に考えるべきアーキテクチャ ~ データを溜めるのは誰だ? ~
Part 0: 製造リファレンス・アーキテクチャとは?(製造リファレンス・アーキテクチャ勉強会)
データ基盤の従来~最新の考え方とSynapse Analyticsでの実現
データファブリック実現のためのプロジェクトの進め方とは
片手間MySQLチューニング戦略
Ad

Similar to Orecord mode dso (20)

PDF
Dso job log and activation parameters
PDF
Lo extraction part 3 extractor logic
PDF
Performance tuning in sap bi 7.0
PDF
PDF
Sap bw lo extraction
PDF
Using error stack and error dt ps in sap bi 7.0
PDF
MD04 Report in BW
PDF
Sap bibw
PPTX
AAO BI Portfolio
PPT
SSRS 2008 R2
PPT
SAP BOBJ Rapid Mart Overview & Implementation
PDF
Lo extraction part 4 update methods
PPT
Sap BPC concepts
PPT
It ready dw_day4_rev00
PDF
Understanding dso (data store object) part 1%3a standard dso.doc
DOC
129471717 unit-v
PDF
Optimized dso data activation using massive parallel processing in sap net we...
PDF
Usgage of ABAP in BI
PDF
How to run v3 job
PDF
Oracle-Whitepaper-Optimizer-with-Oracle-Database-12c.pdf
Dso job log and activation parameters
Lo extraction part 3 extractor logic
Performance tuning in sap bi 7.0
Sap bw lo extraction
Using error stack and error dt ps in sap bi 7.0
MD04 Report in BW
Sap bibw
AAO BI Portfolio
SSRS 2008 R2
SAP BOBJ Rapid Mart Overview & Implementation
Lo extraction part 4 update methods
Sap BPC concepts
It ready dw_day4_rev00
Understanding dso (data store object) part 1%3a standard dso.doc
129471717 unit-v
Optimized dso data activation using massive parallel processing in sap net we...
Usgage of ABAP in BI
How to run v3 job
Oracle-Whitepaper-Optimizer-with-Oracle-Database-12c.pdf
Ad

Recently uploaded (20)

PDF
cuic standard and advanced reporting.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
KodekX | Application Modernization Development
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Spectroscopy.pptx food analysis technology
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Electronic commerce courselecture one. Pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Empathic Computing: Creating Shared Understanding
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
cuic standard and advanced reporting.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
KodekX | Application Modernization Development
Mobile App Security Testing_ A Comprehensive Guide.pdf
Chapter 3 Spatial Domain Image Processing.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Per capita expenditure prediction using model stacking based on satellite ima...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Spectroscopy.pptx food analysis technology
Agricultural_Statistics_at_a_Glance_2022_0.pdf
MYSQL Presentation for SQL database connectivity
Understanding_Digital_Forensics_Presentation.pptx
Electronic commerce courselecture one. Pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Digital-Transformation-Roadmap-for-Companies.pptx
sap open course for s4hana steps from ECC to s4
Empathic Computing: Creating Shared Understanding
Building Integrated photovoltaic BIPV_UPV.pdf
Review of recent advances in non-invasive hemoglobin estimation

Orecord mode dso

  • 1. Record Mode Concept in Delta Management Applies to: SAP BI 2004s or SAP BI 7.x. For more information, visit the Business Intelligence homepage. Summary This document explains the recordmode concept which describes how changes to data records are recorded during delta processing. Author: Apeksha Maniar Company: L&T Infotech Created on: 04 January 2010 Author Bio: Apeksha Maniar, working in L&T Infotech has an experience of more than 3 years in SAP BI. She has been a part of Production Support, Development and Implementation Projects. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 1
  • 2. Record Mode Concept in Delta Management Table of Contents What is Delta? .................................................................................................................................................... 3 0recordmode ....................................................................................................................................................... 3 The values for 0recordmode ........................................................................................................................... 3 How do we identify the Delta? ............................................................................................................................ 4 How Data is Brought to BI .................................................................................................................................. 5 ABR: After Before and Reverse Image ........................................................................................................... 5 Example of ABR Delta Process ................................................................................................................................... 5 AIE/AIM: After Image Delta Process ............................................................................................................... 6 Example of AIE/AIM Delta Process.............................................................................................................................. 6 ADD: Additive Delta Process .......................................................................................................................... 7 Example of ADD Delta Process ................................................................................................................................... 7 Related Content .................................................................................................................................................. 7 Disclaimer and Liability Notice ............................................................................................................................ 8 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 2
  • 3. Record Mode Concept in Delta Management What is Delta? Delta is a feature of the extractor, which refers to the changes (new/modified entries), occurred in the Source System. 0recordmode The record mode describes the type of change that a data record contains. If a datasource is delta capable, the field ROCANCEL which is part of the datasource, holds the changes from R/3 side. This field for the DataSource is assigned to the InfoObject 0RECORDMODE in the BI system. ROCANCEL serves the same purpose at R/3 side which its counterpart 0RECORDMODE does at BW side. The values for 0recordmode Figure 1 The following 6 Record Mode types are available, which identify how a delta record is updated to the data target: After-image ‘ ‘ : The record provides an after image, i.e. how does the record look like after the change. The status of the record after it has been changed, or after data has been added is transferred. Before-image ‘X’ : The record provides a before image, i.e. what did the record look like before the change. The status of the record before the change is transferred. Add ‘A’ : The record provides an additive image. Only the differences for all the numeric values are available. Delete ‘D’ : This recordmode type signifies that the record must be deleted. New Image ‘N’ : The record provides a new image, i.e. when a new record is created; a new image is set for it. Reverse Image ‘R’ : The record provides a reverse image. The content of this record is equivalent to a before image. The only difference occurs when updating a DataStore object: An existing record with the same key is deleted. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 3
  • 4. Record Mode Concept in Delta Management How do we identify the Delta? The delta process (how the data is transferred) for the DataSource is determined in the table ROOSOURCE (in the source system) or in the table RSOLTPSOURCE (in BI for DataSources 3.x) or in the table RSDS (in BI for DataSources) respectively Properties of the delta process are determined in the table RODELTAM (in BI or in the source system) Figure 2 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 4
  • 5. Record Mode Concept in Delta Management How Data is Brought to BI Data is brought (extracted) to BI using one of the following delta processes:  ABR: After before and Reverse image  AIE/AIM: After image  ADD: Additive image ABR: After Before and Reverse Image What is it? Once a new entry is posted or an existing posting is changed at R/3 side, an after image shows the status after the change, a before image shows the status before the change with a negative sign and the reverse image shows the negative sign next to the record while indicating it for deletion. What update type (for key figures) it supports?  Addition  Overwrite Does it support loading to both infocube and DSO? YES Example of ABR Delta Process Let us consider a scenario to demonstrate the ABR Delta Process. Since it can be used for both Infocube and DSO, let us consider a scenario where in the loading happens directly to DSO, with the advantage that we can track the record changes in change log table for the DSO. In our case, the DSO is set to additive mode so that the data source sends both before and after image. Incase if it is set to overwrite, it sends only after image. Let us check the new entry in DSO. As shown below (Figure 3), the recordmode has the value N (New entry), indicating that this record is a new one. Here, the CRM Gross Weight (CRM_GWEIGH) field has the initial value 4,093. Figure 3 Next, the value of CRM gross weight (CRM_GWEIGH) is changed to 5,360 in the source system. In order to reflect this change, the data source will send two entries to BI: One is before image with negative sign to nullify the initial value (Figure 4). Figure 4 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 5
  • 6. Record Mode Concept in Delta Management And the other one is after image entry (modified value) as shown below (Figure 5). Figure 5 Upon activation, the after image goes to active table (Figure 6). Figure 6 AIE/AIM: After Image Delta Process What is it? Once a new entry is posted or an existing posting is changed at R/3 side, an after image shows the status after the change. What update type (for key figures) it supports? Overwrite Only Does it support loading to both infocube and DSO? No, only DSO Example of AIE/AIM Delta Process Let us consider the example given above. The initial load to the target DSO is as shown in Figure 7. Figure 7 This time after the value of CRM_GWEIGH is changed to 5,360 in the source system, the datasource sends only one entry to BI, i.e. the After Image, which will hold the change as shown below (Figure 8). Figure 8 Upon activation, the after image goes to active table (Figure 9). Figure 9 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 6
  • 7. Record Mode Concept in Delta Management ADD: Additive Delta Process What is it? Once a new entry is posted or an existing posting is changed at R/3 side, an additive image shows the difference between the numeric values. What update type (for key figures) it supports? Addition Only Does it support loading to both infocube and DSO? YES (In case the DSO has Update type Addition) Example of ADD Delta Process Again consider the above scenario. The initial load to the target DSO is as shown in Figure 10. Figure 10 When the value of CRM_GWEIGH is changed to 5,360 in the source system, the datasource sends one entry to BI with the CRM_GWEIGH value 1,267, i.e. the Difference between the new value and the original value as shown below (Figure 11). Figure 11 Upon activation, the final entry in active table is the result of the addition of the original value and the new value (4093+1267=5360) KG (Figure 12). Figure 12 Related Content For more information, visit Data Extraction from SAP Source Systems For more information, visit the Business Intelligence homepage. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 7
  • 8. Record Mode Concept in Delta Management Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 8