Lock entries

hi gurus
How to open the lock entries without using sm12 . Is ther any setting in plant level.
thx

Hello Mr Raju
This specific lock entries is comming with the mtl in batches.
How the remove the same without sm12.
Thanks
umesh

Similar Messages

  • Lock entries in report RFWT0010

    Hi all,
    When i run the report RFWT0010 don't have anything just a report at the end said: Lock entrie and list all the vendor codes with and ID C6909.
    Thanks in advance

    Dear,
    That is because some user is tying to post an entry/ payment to that vendor, try again and it will update the withholding tax information on the posted documents.

  • Unalbe to delete lock entry table using Dequeue function module

    Friends,
    I display a base ALV list with custom app. tool bar. When i click on a button, i submit another report which updates a z-table for that corresponding row. I create a lock object for this entry before submitting the report. After updating the table, I try to delete the lock object using dequeue function module in the called report, but though the subrc is 0, the lock entry is not getting deleted in SM12. The called report, after dequeue, again submits report 1 (the caller). So, when i try to do some operation for the same row which I first selected, it triggers Foreign_lock exception. When I completely go out of the base list, only then the entry is deleted. Can anyone tell me the reason? I have tried with parameters _SCOPE & _SYNCHRON, but same result.
    Regards,
    Sathish R

    Hi,
    The triggering of the dequeue is not in the proper position as it need to be placed.
    Thats the only problem as per u have described the issue.
    Place the deque as soon as the report is return the value.
    I hope it may work ur issue.

  • Lock entry in RPM

    Hi,
    How can I check lock entries in RPM?
    Is there any function module through which I can identify the user who has currently locked a particular review object?
    When I am clicking on particular review then the system is showing a message that an user has processed the particular review.I want to get the user through programming.Is there any way out?
    Thanks in advance,
    Sourav

    seems you are not using the call correctly.
        CALL FUNCTION 'ENQUEUE_ENQ_CGPL_PROJECT'
          EXPORTING
            mode_cgpl_project_enq = 'E'
            application           = 'PPM'
            external_id           = <id>
            _scope                = <scope>
          EXCEPTIONS
            foreign_lock          = 1
            system_failure        = 2.
    above call will set sy-subrc to 1 if exclusive lock has already been set.
    Edited by: Alok Kumar on Aug 11, 2011 9:57 AM

  • Lock entries making problem

    Hi Experts,
    We are facing one problem durring updating the records in background 'Z' transaction. It will update the a record in mm02. The updated record will store in a Z table.
    But while executing mass records(multiple records) its getting error as lock entries. This error also coming after 1000 records. Upto 1000 records we are not getting any error. After this lock entries error comming.
    Can any one pls guide me what will be the reason behind this? Even while updating the 'Z' records we are added the commit work also . Still the same error comming. Kindly guide as.
    Moahana.

    Hi
    I hope you are using ENQUEUE_E_TABLE and DEQUEUE_E_TABLE FM while updated the tables
    Yes Commit statement is very important while updating the records in Tables
    Regards
    Renu Gusain

  • Lock Entries - How to unlock

    Hi Gurus,
    I have an ID locking the Interactive Planning --> Demand Planning Area, this is not showing up in SM12,
    but showing up from the menu --> Edit --> Lock Entries.
    What do I do to unlock these?
    Thanks
    JS

    Hello all,
    Thanks for your time and response. But there has been an abrupt shutdown of the system, and there is nothing in SM04, SM12, SM66 SM50 running as suggested by all of you. And the locked planning areas are getting unlocked after certain period of time. This is a recurring problem happening to Planning areas.
    I am trying to see if I have to patch my system, this is new dev installation SAP SCM version 5.1
    Any ideas would be helpful.
    Thanks
    JS

  • Lock Entries are having the false time

    Hello!
    I've a problem in the lock table.
    When I look at the status screen there is standing the right time.
    But the lock entries are listed with a time which is 10 minutes in the future.
    Can somebody tell me where this field gets his values? The lock table is in the shared memory I think, but I can't understand why there is the false time.
    Thank you for your answers!
    Florian

    Hi,
    do you mean the time of my system?
    This time is correct.
    The system time of the ERP Server and my system is nearly the same and the time of the lock entries not.
    At our CRM system it is correct.
    And at our Test-Systems it is also correct.

  • Lock entries standard table

    Hi Experts,
    Please help in finding which SAP Standard table can we find the lock entries(SM12 transaction).
    Thanks!

    Prerequisites
    You have generated the demo data for the SQL Tutorial.
    Log on to the database instance DEMODB as user MONA.
    Examples
    You can use the system table LOCKS to determine the following database information, among other things:
    &#9679;     All locks that are currently held on table ROOM
    SELECT lockmode, lockstate, rowidlength, rowidhex, rowid
      FROM DOMAIN.LOCKS
        WHERE tablename = 'ROOM'
    &#9679;     All locks that the current user holds in that database session on table ROOM
    SELECT lockmode, lockstate, rowidlength, rowidhex, rowid
      FROM DOMAIN.LOCKS, SYSINFO.SESSIONS
        WHERE tablename = 'ROOM'
          AND locks.session = sessions.sessionid
    &#9679;     All locks that are currently held on the table with the hexadecimal internal identification 000000000000035D
    SELECT lockmode, lockstate, rowidlength, rowidhex, rowid
      FROM DOMAIN.LOCKS
        WHERE tableid = X'000000000000035D'
    If the current user is the database administrator (DBA user) or the database system administrator (SYSDBA user), then all currently held locks are shown.
    Users that belong to other user classes only see the locks held by that one user.
    Definition
    The system table LOCKS describes the current lock entries and entries for lock requests.
    Structure
    LOCKS
    SESSION
    FIXED(10)
    ID of the database session
    TRANSCOUNT
    CHAR(20)
    Transaction identification in the database session
    PROCESS
    FIXED(10)
    Process identification in the database instance
    USERNAME
    CHAR(32)
    Name of the user
    DATE
    DATE(10)
    Creation date of the lock
    TIME
    TIME(8)
    Creation time of the lock
    TERMID
    CHAR(18)
    User terminal identification
    LASTWRITE
    CHAR(10)
    Elapsed time since the last SQL statement for data manipulation
    LOCKMODE
    CHAR(14)
    Type of lock (NULL value | SHARE | EXCLUSIVE)
    LOCKSTATE
    CHAR(10)
    Status of lock
    APPLPROCESS
    FIXED(10)
    Process identification on the client hardware
    APPLNODE
    CHAR(64)
    Client hardware identification
    SCHEMANAME
    CHAR(32)
    Name of the schema of the table
    OWNER
    CHAR(32)
    Name of the owner of the table
    TABLENAME
    CHAR(32)
    Name of the table
    TABLEID
    CHAR(8) BYTE
    ID of the table
    ROWIDLENGTH
    FIXED(4)
    Length of the key of the locked row
    ROWIDHEX
    CHAR(64) BYTE
    Start of the key of the locked row in hexadecimal notation
    ROWID
    CHAR(128)
    Start of the key of the locked row
    http://dev.mysql.com/doc/maxdb/en/c4/812640632cec01e10000000a155106/content.htm

  • Lock entries for FM - 'ALM_ME_READ_CATALOG_PROFILE'

    Dear Friends
    Whenever the following function modules are called it create lock entries in sm12. So it restricts transaction QS41 for edit Mode.
    ALM_ME_READ_CATALOG_PROFILE
    QM09_READ_CATALOG_PROFILE
    I want these lock entires to be deleted automatically after it is called. I tried to remove lock entires using the following function module and it never worked.
    Call function 'DEQUEUE_EQQPGR2'
          exporting
            mode_qpgr  = 'X'
            mandt      = sy-mandt
            katalogart = 'P'
            codegruppe = 'PTRTY'
    Kindly help me.
    Thanks

    Hi Meghana,
    I am not sure about the FM. But the CRM table COMM_PCAT_ITM contains the relation between product catalog and the product. In this table the product guids are stored in the field 'OBJECT' and corresponding product catalog guids are in the field 'PARENT_CATALOG'
    Hope this helps to debug further.
    Thnaks,
    Paul Kondaveeti

  • Lock entries appearing again after deleting

    Hi,
    I am deleting some old lock entries in SM12 but i dont know how , deleted entries are appearing again back. Can you please suggest how to tackle this problem.
    Thanks

    Hello....
    Just after deleting once it will rpompt are you really want to delete say yes..
    and Also check the SM04 tcode whether this is still present then hoppe this will solve ...
    Sas

  • Lock entries for table SWWWIHEAD in SM12 Urgent

    HI
    From last few days, In SM12 there are lock entries coming for workitems of table SWWWIHEAD even though workitem is completed successfully. Time of lock entry shows it is time when approver started taking action on it.
    Please let me know is there any impact of this on system and how it is happening and what we should do with these lock entries.
    Appreciate your help.
    Regards,
    Shiv.

    Dear,
    Actually we faced an issue related to this like the approver took action on it. after that the item got locked. the basis is telling there could be the RFC session from SAP Portal inbox which is not closed somehow. may be session is exited without properly logging out. in this case the item was still in his inbox and when the approver tries to open it, the error message says workitem is locked bye the same user id. The basis is telling the lock will be removed after the default stipulated time (in my case, its 8 Hrs ! ).
    hope this helps.
    with regards,
    Sudhahar R.

  • Lock entries in RPM

    Hi,
    How can I check lock entries in RPM?
    Is there any function module through which I can identify the user who has currently locked a particular review object?
    When I am clicking on particular review then the system is showing a message that an user has processed the particular review.I want to get the user through programming.Is there any way out?
    Thanks in advance,
    Sourav

    seems you are not using the call correctly.
        CALL FUNCTION 'ENQUEUE_ENQ_CGPL_PROJECT'
          EXPORTING
            mode_cgpl_project_enq = 'E'
            application           = 'PPM'
            external_id           = <id>
            _scope                = <scope>
          EXCEPTIONS
            foreign_lock          = 1
            system_failure        = 2.
    above call will set sy-subrc to 1 if exclusive lock has already been set.
    Edited by: Alok Kumar on Aug 11, 2011 9:57 AM

  • Maximum number of Lock Entries

    Hi Guys,
    I'm doing some WBS Settlements through CJ88/CJB1 . It might happen that this Txn may process thousands of WBS Elements at a time which means all those WBS Elements will be locked .
    How to find out the maximum Lock entries in SAP ?
    I want to avoid LOCK TABLE OVERFLOW Exception when processing all the WBS Elements .
    I have gone through the txn RZ11 and found out that the enque/table_size as 4096 KB (ie 4MB) .
    I'm not sure how to many entries make out this 4MB . Do anyone have an Idea ??
    Thanks .
    Anil

    Where is the relation to ABAP development? Please ask again in forum "SAP Netweaver Administrator".
    Thread locked.
    Thomas

  • Too many lock entries on BUT000 in SRM7

    Hi,
    When we are trying to update attributes of Org units through FM BBP_UPDATE_ATTRIBUTES, there are so many lock entries created for different values on table BUT000.
    We are calling the said FM in loop becasue this FM has the capability of updating just one ORG unit at a time. So while the loop runs, there are a lot of lock entries created on BUT000 which are just not getting unlocked automatically.
    There is a huge performance hit due to this. We are not sure how and why BUT000 entries are getting locked while updating org unit attributes.
    Please suggest what should be a remedy to this.
    Thanks,
    Tirth

    i dont know BUT000 table and have no idea what it does, but i suspect that it works like with every other thing in SAP system.
    In DEV you mostly have not much data. E.G. in your case lets say 200 BUT000 entries.
    200 lock entries aint a problem for the system.
    In Quality you SHOULD have more data, up to number of data in production. If you have nearly same amount of data in Q like in P the problem should have existed in quality as well.
    Another thing is that in productive MORE people work.
    See there is a table where your lock entries get stored, if that table exceeds some certain amount of entries your system is going to slow down up to dumping or timeouting.
    So in production system there are probably other people as well creating lockj entries with various transactions, while when you tested it in quality you were probably not much users on the system.

  • How to check the Lock Entries Dynamically

    Hi
    I have a list of Objects in an internal table and i want to know which one of these objects are locked by another users.
    I am using SAP standard Lock object 'EPNODE' and its FM 'ENQUEUE_EPNODE ' to Lock the entries.
    Please suggest how i can find among a list of objects, which one are locked.
    Please suggest any transparent table which hold lock entries or any Function Module which check for lock entries.
    Thanks in adavance

    Hi
    Just double click on the FM, it will take you to SE37
    click on IMPORT tab there you find import parameters against which there is the associated type
    you need to declare your variables(parameteres) according to these associated types
    whatever the FM it may be, the process is same
    Hope this would solve your problem
    Regards
    Ramchander Rao.k

Maybe you are looking for