‎2007 Aug 24 8:23 AM
Hi,
How the scope parameter behaves for the lock object ,means if we pass scope =1
wat is this mean ,and what are the possible values that we give to this parameter
‎2007 Aug 24 8:34 AM
Hi,
Go through this.
http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eebf446011d189700000e8322d00/content.htm
Regards,
Suruchi
‎2007 Aug 24 9:30 AM
Hi...
The _SCOPE parameter will determine how the Locks are passed during V1 and V2 updates.
_SCOPE = 1 means Lock entries are deleted while passing the control to V1 update work process.
_SCOPE = 2 means Lock entries are passed while passing the control to V1 update work process. They are deleted at the End of V2.
This is the default setting.
_SCOPE = 3 means Lock entries are created only while passing the control to V1 update work process. They are again deleted at the End of V2.
<b>Reward if Helpful</b>
‎2007 Aug 24 4:44 PM
thanks naryana
But i m n getting it completeley
work process i know but what are v1 and v2 ?
‎2007 Aug 25 7:27 AM
Hii Tarun..
This comes under Database Updates Concept in SAP.
Let me give u basic idea.
V1 V2 Updates are processed by Update Work processes .
V1 - Means Critical updates which runs under locking
V2 - Means Non Critical updates which runs without locking
For this we use the statement
We will create/use a FM in SE37 with Processing type Update module.
And this function is called using
CALL FUNCTION 'FM' IN UPDATE TASK
Only in this scenario the _SCOPE parameter in Lock objects modules will work differently .
Otherwise you need not to bother about this parameter.
<b>Reward if Helpful</b><b></b>