Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Bundling technique?

Former Member
0 Kudos
550

Hi

What is Bundling technique?

Thanks

2 REPLIES 2

sergey_korolev
Active Contributor
0 Kudos
220

<a href="http://help.sap.com/search/">Search on-line help</a>

Former Member
0 Kudos
220

Hi Subash,

Bundling techniques is a procees in which the databse updates are bundeled together and updated at one time.

Bundling is an ABAP programming technique which collects database changes and performs these together at the end of a transaction

Bundling updates involves combining important changes made by an SAP transaction in a database LUW. Only changes that are performed in a single database LUW can be reversed. If it is important to be able to reverse all of the changes made with an SAP transaction for the sake of maintaining data consistency, all of the changes must be bundled in one database LUW.

In order to bundle the updates, the special ABAP form routines and function modules for the database changes are not processed until the ABAP keyword COMMIT WORK is output.

The SAP System also features its own locking mechanism for restricting data access. This mechanism is used, in certain cases, to hold SAP locks within an SAP transaction beyond the boundaries of database LUWs. (At the start of a new database LUW, the database locks of the previous LUW are released. The SAP locks, however, remain active). Further information on SAP locks can be found in the documentation on The SAP Lock Concept.

Update bundling and the SAP lock system maintain data integrity in processes that cover several database LUWs, and fulfill the requirements regarding rollback. This means that all of the data changes can be reversed if a runtime error occurs during the update.

There are different types of bundling which can be achieved ..

take a look at this link

http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm

Cheers

Vj

If it helps dont forget to makr points.