SAP Managed Tags: ABAP Development hi all, i want to use sap locking mechanisn (Enqueue and dequeue consept) while updating database table...please explain how to use this while updating a database table. Thanks in advance Nandha kumar Reply All forum topics Previous Topic Next Topic ...
SAP Managed Tags: ABAP Development Hi All, I am facing problem with dequeue. I ahve created the lock objects on the primary key fields for the DB table i wanted to use. Now the enqueue is used in FM1 which locks the data and passes the entries to front Java application. Java does...
CALL FUNCTION 'DEQUEUE_ES_PROG'EXPORTING mode_trdir = 'E'name = 'YLEON_032'x_name = ...
2.Implementing EN/DEQUEUE will solve the problem? 3.If first report is writing the data to table at 12pm(after locking the table), and the second report trying to access the table at 12:10pm to write the data, will this wait in some queue and write the data after the first report ...
In the tables tab..Give the table name.. Example: ZTABLE Save and generate.. Your lock object is now created..You can see the LOCK MODULES.. In the menu ..GOTO -> LOCK MODULES..There you can see the ENQUEUE and DEQUEUE function Lock objects: http://www.sap-img.com/abap/type-and...
SAP Managed Tags: ABAP Development Can i use FM 'ENQUEUE_E_TABLE' and 'DEQUEUE_E_TABLE' for nast table also, and in general for all DB tables? Lock object concept lock the partcular data record while updating. decativating lock - Dequeue When you create lock object in se11 ( Start...
SAP Managed Tags: ABAP Development Hi i executed ur program and checked the entries in sm12. there exists an entry in sm12 for the program code in TRDIR table . it shows an exclusive lock placed on the table which could be deleted as well by checking the other radiobutton. i sugges...
SAP Managed Tags: ABAP Development Hi All, I want to implement locking concept in a report where I need to lock the function location (IL02), can any one please help me in getting the ENQUEUE AND DEQUEUE Function module . Thanks Shaw Reply Former Member In response to Sandeep_Kumar ...
SAP Managed Tags: ABAP Development Hi In SE 11 create Lock Object . Pass name of table and fields for which Lock object is required to be set . Activate Lock object . Two fuction Module will be created "ENQUEUE" and "DEQUEUE" . Pass these FM to Programme and accordingly pass paremete...
ABAP Development Hi This is the basic information about the Fm, and you can search it in SCN you can get better answers. We can use the function modules ENQUEUE_E_TABLE for locking tables and the function module DEQUEUE_E_TABLE for unlocking tables. With this method, we don't need to ...