cancel
Showing results for 
Search instead for 
Did you mean: 

update tables

Former Member
0 Kudos

hi experts

can sumbody help me with

1.update tables

2.does v1,v2,v3 use these update tables?

3.is ther any relation between v1,v2,v3 updates and direct delta and queued delta?

regards

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member210253
Contributor
0 Kudos

Hi KK,

Go through the below link.

http://scn.sap.com/thread/3197948

Regards,

Babu

Former Member
0 Kudos
Former Member
0 Kudos

Hi,

V1(synchronous) denotes time-critical updates used for updating the actual transaction tables.

V2(asyncronious) denotes non-time-critical updates used for updating statistics tables related to the transaction tables.

For Example, after a sales order entry transaction is completed, the corresponding sales order tables would be updated in V1 mode, and the corresponding statistics tables would be updated in V2 mode.

V3(asyncronious with background schduling) update mode(Uses delta queue technology) is similar to the V2 update mode. The main differenceis that V2 updates are always triggered by applications, while V3 updates may be scheduled independently. Many extraction programs available for mySAP.com applications today use the delta queue technology to identify deltas.

Direct Delta (update mode A): With this update mode, the extraction data is transferred with each document posting directly into the BW delta queue. In doing so, each document posting with delta extraction is posted for exactly one LUW in the respective BW delta queues.

• Each document posting is directly transferred into the BW delta queue

• Each document posting with delta extraction leads to exactly one LUW in the respective BW delta queues

Transaction postings lead to:

1. Records in transaction tables and in update tables

2. A periodically scheduled job transfers these postings into the BW delta queue

3. This BW Delta queue is read when a delta load is executed.

Pros:

• Extraction is independent of V2 update

• Less monitoring overhead of update data or extraction queue

Cons:

• Not suitable for environments with high number of document changes

• Setup and delta initialization have to be executed successfully before document postings are resumed

• V1 is more heavily burdened

Queued Delta: With this update mode, the extraction data is collected for the affected application instead of being collected in an extraction queue, and can be transferred as usual with the V3 update by means of an updating collective run into the BW delta queue. In doing so, up to 10000 delta extractions of documents for an LUW are compressed for each DataSource into the BW delta queue, depending on the application.

• Extraction data is collected for the affected application in an extraction queue

• Collective run as usual for transferring data into the BW delta queue

Transaction postings lead to:

1. Records in transaction tables and in extraction queue

2. A periodically scheduled job transfers these postings into the BW delta queue

3. This BW Delta queue is read when a delta load is executed.

Pros:

• Extraction is independent of V2 update

• Suitable for environments with high number of document changes

• Writing to extraction queue is within V1-update: this ensures correct serialization

• Downtime is reduced to running the setup

Cons:

• V1 is more heavily burdened compared to V3

• Administrative overhead of extraction queue

Regards,

Ramitha