‎2007 Apr 02 10:53 AM
Hi All
I have to update table ADRC from another internal table of type ADRC.
My question is by which Function Module i can put a lock on ADRC and then release after update.
Regards
Jai
‎2007 Apr 02 10:57 AM
<b>Lock table</b>
CALL FUNCTION 'ENQUEUE_E_TABLE'
EXPORTING
tabname = table_name
EXCEPTIONS
foreign_lock = 1
system_failure = 2
OTHERS = 3.
<b> Unlock Table</b>
CALL FUNCTION 'DEQUEUE_E_TABLE'
EXPORTING
tabname = table_namechk this BAPI
<b>BAPI_BUPA_ADDRESS_CHANGE</b>
Message was edited by:
Chandrasekhar Jagarlamudi