‎2009 Nov 12 7:43 AM
Hi,
i want to change the attributes for a standard program RK340003.i want to tick check mark in unicode checks active.
so when ever i am changing i got the message changes to RK340003 are forbidden by sap*
ewhat to do now...how i will put tick mark in the check box.
please help??
‎2009 Nov 12 7:48 AM
Hi,
Since EDIT LOCK is available, you are not allowed to change the attributes of the program. Contact SAP.
‎2009 Nov 12 7:49 AM
Hi Friend,
Since it is a SAP standard program, you will not have the privileges to change it.
Anyways I cheekced this program in my system. It doesnt exist.
Regards
Abhii...
‎2009 Nov 12 8:41 AM
‎2009 Nov 12 9:16 AM
Hi
U can check the Unicode Check box using the program.
TABLES: trdir.
DATA: u_check TYPE trdir-uccheck,
wa TYPE trdir.
SELECT-OPTIONS: s_name FOR trdir-name.
DATA: s1_name TYPE trdir-name.
LOOP AT s_name.
s1_name = s_name-low.
SELECT SINGLE * FROM trdir WHERE name = s1_name.
IF sy-subrc <> 0.
MESSAGE i001(zawi_demo).
EXIT.
ENDIF.
SELECT SINGLE uccheck FROM trdir INTO u_check WHERE name = s1_name.
IF u_check = ''.
SELECT SINGLE * FROM trdir INTO wa WHERE name = s1_name.
wa-uccheck = 'X'.
MODIFY trdir FROM wa.
ENDIF.
CLEAR wa.
ENDLOOP.Give the prog name (RK340003) in s_name.
Hope it works...
Revert back for any queries.
‎2009 Nov 12 10:51 AM
So why do you want to change this in the first place. It is a standard program as you are saying, so if it is giving some sort of errors / problems, I would suggest to search for a note on this or contact SAP.