2006 Aug 29 8:06 AM
Hi
What is SAP LUW? How many types of LUW are there in SAP ?
thanks
Hi
What is SAP LUW? How many types of LUW are there in SAP ?
thanks
2006 Aug 29 8:38 AM
Hi Subhash,
Chech the link
http://help.sap.com/saphelp_47x200/helpdata/en/41/7af4c2a79e11d1950f0000e82de14a/frameset.htm
Thank you,
Ramu N.
2006 Aug 29 8:55 AM
hi subhash,
A Logical Unit of Work (LUW or database transaction) is an inseparable sequence of database operations which must be executed either in its entirety or not at all. For the database system, it thus constitutes a unit.
LUWs help to guarantee database integrity. When an LUW has been successfully concluded, the database is once again in a correct state. If, however, an error occurs within an LUW, all database changes made since the beginning of the LUW are canceled and the database is then in the same state as before the LUW started.
An LUW begins
o each time you start a transaction
o when the database changes of the previous LUW have been confirmed (database commit) or
o when the database changes of the previous LUW have been cancelled (database rollback)
An LUW ends
o when the database changes have been confirmed (database commit) or
o when the database changes have been canceled (database rollback)
SAP memory and ABAP memoryUsing SAP memory. User-specific memory retained for the duration of the session. Can only be used for simple field values.
Using ABAP memory. Can be used to transfer data between internal modi. Can be used to transfer any ABAP/4 variables ( Fields, strings, internal tables, complex objects)
SAP memoryYou use the SPA/GPA parameters to pass data. These paramters are saved globally in memory. The paramters are indetified by a three-character code.
In dialog programs you can SET and GET these parameters in the attribute window of the screen field, by marking the SET and GET fields and put the name of the parameter in the ParameterId field.
In a program ( Dialog or Report ) you can use the GET PARAMETER and SET PARAMETER statements:
set parameter id 'RV1' field <fieldname>
get parameter id 'RV1' field <fieldname>
http://help.sap.com/saphelp_nw04/helpdata/en/41/7af4bca79e11d1950f0000e82de14a/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm
hope this helps,
priya.
2006 Aug 29 8:58 AM
Hi,
There are two LUW.
1.Database LUW
2.SAP LUW.
Database LUW:
It is an inseparable sequence of database operations that ends with a database commit (i.e Implicit one).
SAP LUW :
A logical unit consisting of dialog steps, whose changes are written to the database in a single database LUW is called an SAP LUW.
(i.e Bundling Technique).
With regards.
Kalpanashri Rajendran.
2006 Aug 29 9:14 AM
Hi,
Check the help on SAP LUW
http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm
Database LUW
http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bca79e11d1950f0000e82de14a/content.htm
Regards
vijay