Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

unicode probleam

Former Member
0 Likes
646

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??

5 REPLIES 5
Read only

Former Member
0 Likes
601

Hi,

Since EDIT LOCK is available, you are not allowed to change the attributes of the program. Contact SAP.

Read only

Former Member
0 Likes
601

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...

Read only

0 Likes
601

hi,

can anybody suggest anything about my query.

Read only

Former Member
0 Likes
601

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.

Read only

Sm1tje
Active Contributor
0 Likes
601

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.