Application Development 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: 

Unicode flag set

Former Member
0 Kudos

Hi,

I am executing the transaction code KEDU - Build summarization level. This transaction is going to short dump because RK310002 (Subroutine pool) is not unicode enabled. I am trying to set the unicode flag with user id SAP, every time i am getting a message that SAP is not authorized.

When i logoff and login with different used id and edit the standard, "SAP* user is locked" message coming.

How to set UNICODE flag for the standard subroutine pool - RK310002.

I referred all the forum for the solution, and found some function modules RSS_PROGRAM_INSERT. But i don't think this FM will help me.

Pls advise me.

Thanks,

1 REPLY 1

Former Member
0 Kudos

you can try this


data : wtrdir like trdir.
select single * into wtrdir from trdir where name = 'RK310002'.
wtrdir-UCCHECK = ''. "it is X means unicode is check change the code as per need
CALL FUNCTION 'ABAD0_UPDATE_TRDIR_ENTRY'
  EXPORTING
    I_TRDIR               = wtrdir
 EXCEPTIONS
   ENTRY_NOT_FOUND       = 1
   OTHERS                = 2
          .
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

But I will suggest dont change standard attribute if it is not very urgent...

regards

shiba dutta