How to remove the ABAP program edit lock

Source: Internet
Author: User

Method 1: In the case of an existing SE38 create Modify permission

Report Zunlock.
Tables:trdir. The System table Trdir
Parameters:program like Trdir-name.
Parameters:lock like TRDIR-EDTX.
SELECT single * from trdir WHERE NAME = program.
TRDIR-EDTX = LOCK.
MODIFY Trdir.
IF SY-SUBRC EQ 0.
WRITE:/' Editor Lock update successful ', Trdir-name.
IF trdir-edtx = ' X '.
WRITE: ' Lock '.
ELSE.
WRITE: ' UnLock '.
ENDIF.
ELSE.
WRITE:/' Editor Lock update unsuccessful ', Trdir-name.
ENDIF.

Method 2: Without SE38 to create the Modify permission

Run se30/tips&tricks/in the rightmost file box, enter:

Update Progdir Set edtx = "
Where name = ' Program '. "Replace program with the name you want to modify

After execution, the success can be lifted.

If you want to lock, in the same vein, set: EDTX = ' X '
This method compares commonly used cracked ABAP ACCESS key when releasing the edit lock of the program LSKEYF00.

Method 3:se16/se16n Modify the value of the Transparent Table Trdir field EDTX (Note: invalid for ECC6)

How to remove the ABAP program edit lock

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.