Application Development and Automation 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: 
Read only

Update table ADRC

Former Member
0 Likes
349

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

1 REPLY 1
Read only

Former Member
0 Likes
296

<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_name

chk this BAPI

<b>BAPI_BUPA_ADDRESS_CHANGE</b>

Message was edited by:

Chandrasekhar Jagarlamudi