After the SAP systems are configured for locking, you need to configure the driver. This is a driver setting on the Subscriber channel.
In Designer or iManager, access the properties of the driver.
Access the
, under the .Set the
option to .Click
to save the change, then restart the driver for the change to take effect.The driver can set or clear the supported lock types by using two pseudo-attributes called SETGRANULARLOCKS and CLEARGRANULARLOCKS.
The supported lock types for SETGRANULARLOCKS are:
LOCK_LOCAL
LOCK_GLOBAL
The supported lock types for CLEARGRANULARLOCKS are:
LOCK_LOCAL
LOCK_GLOBAL
LOCK_WRONG_LOGON
To set or clear a particular lock, simply use a value of X or x for the desired lock type value. Any unspecified lock type sets to a value of ‘ ’, which implies the lock type is not set or cleared.
NOTE:It is not valid to use these pseudo-attributes in a <remove-value> element.
The following is an example of what to add to a policy in a driver, if you did not set the Subscriber parameter.
// // Example - Set Local Lock on User // <modify-attr attr-name="SETGRANULARLOCKS"> <add-value> <value type="structured"> <component name="LOCK_LOCAL">X</component> </value> </add-value> </modify-attr> // // Example - Set Local and Global Locks on User // <modify-attr attr-name="SETGRANULARLOCKS"> <add-value> <value type="structured"> <component name="LOCK_LOCAL">X</component> <component name="LOCK_GLOBAL">X</component> </value> </add-value> </modify-attr> // // Example - Clear Local and Wrong Logon Locks on User // <modify-attr attr-name="CLEARGRANULARLOCKS"> <add-value> <value type="structured"> <component name="LOCK_LOCAL">X</component> <component name="LOCK_WRONG_LOGON">X</component> </value> </add-value> </modify-attr>