|
|
破解ACCESS KEY for IDES4.7 & 全编译
最初由 sanbao 发布
[B]楼主能不能提供一个全部编译,破解access key之类使用IDES之前最基本的操作指导?谢谢~~ [/B]
1. Disable ERITOR_lock status of program ‘LSKEYF00’
Method :
Create a program and run the following code :
UPDATE PROGDIR SET EDTX = ''
WHERE NAME = 'LSKEYF00'
AND STATE = 'A'.
note: when you create the program, you should use the method like step 2.set a break-point at 'LSKEYU05' and create another session with T-CODE SE38 and input a program name you want to create and click the button 'create', then it will stop at the break-point.You should change sy-subrc to zero. Then press F6 ,change sy-subrc to zero again and press F8 to continue. Now you can input the codes.
2. Set a Break-Point in program ‘LSKEYU05’
Method :
A. In se38 , Input Program name with ‘LSKEYU05’
And press ‘Display’ button to display the sourc code .
B. Set Break-Point on ‘CASE SY-SUBRC. ‘ sentence
3. Before Modify program ‘LSKEYF00’
Method :
A. Open anther sap windows with T.code - se38 , and input program name
With ‘LSKEYF00’ .
B. Press ‘Change’ button.
C. Program will stop at Break-point ; change sy-subrc to zero ( Sy-subrc = 0 )
And press ‘F8’ to continue .
( Maybe You will change the sy-subrc value twice )
4. Modify program ‘LSKEYF00’
Method :
Atfer setp 3 , you will get into change mode with se38 .
Find the subroutine ‘JUMP_TEMP_Wall’ ;
Insert the following code behind ‘ CALL 'GET_DEVELOPER_KEY'’ :
If sy-uname = 'SAP01'. “ The user u created without access key
sy-subrc = 0 .
Endif.
全编译的CODE 是 SGEN. |
|