Delete Language Entries in SMLT

1. Execute transaction code SMLT. As an example, you want to delete entry language for Bulgarian. Please be noted that the deletion can be done for languages that are not imported.

2. Execute report RSCPINST from transaction code SE38. Highlight the Bulgarian entry and choose Delete and Save.

3. Then, choose Simulate and find the character setting for Bulgarian language (W – for Bulgarian). Go to transaction code RZ10. Choose Instance Profile and find parameter zcsa/installed_languages. Delete the “W” from the parameter. After the changes is done, execute again the report RSCPINST and click Activate and Simulate.

4. Login to the operating system as sysdba and delete the Bulgarian language entry from SQL level (since you cannot delete from SAP level). For reference, you can view table T002C from transaction code SE16/SE16N.

SQL> select SPRAS from SAPSR3.T002C;
SPR
---
W
D
E
SQL> delete from SAPSR3.T002C where SPRAS='W';
SQL> commit;

5. Execute transaction code SMLT and the Bulgarian language entry is now removed.

You May Also Like

Leave a Reply?