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

Change Report's Attributes

Former Member
0 Likes
645

Hey Guys

I copied a report whaich was orignally made for China.

The problem is I when I try to save a variant the standard titles are all in CHinese. Even the sy-langu = '1' in debug in the report. How do I default it to EN?

Thanks for reading

Regards

Sameer

Hey Guys

I copied a report whaich was orignally made for China.

The problem is I when I try to save a variant the standard titles are all in CHinese. Even the sy-langu = '1' in debug in the report. How do I default it to EN?

Thanks for reading

Regards

Sameer

4 REPLIES 4
Read only

Former Member
0 Likes
605

Hi,

When you are copying a program you have to select all the checkboxes like documentation, Variants etc then everything will be copied.

You delete that program, and again try to copy the program by selecting all the check boxes, may be the problem will be solved.

Regards

Haritha.

Read only

Former Member
0 Likes
605

May be you have to translate all the texts from Chinese to english. You can do this from SE38->Goto->Translation.

Regards,

Joy.

Read only

Former Member
0 Likes
605

What is your logon language?

The language that you give when you login to sap?

Is it not EN?

Read only

Former Member
0 Likes
605

Try using this code.

DATA: v_lang TYPE tcp0c-langu,

v_cntry TYPE tcp0c-country,

v_mod TYPE tcp0c-modifier.

GET LOCALE LANGUAGE v_lang COUNTRY v_cntry MODIFIER v_mod.

SET LOCALE LANGUAGE 'E' COUNTRY V_cntry.

Regards

Sandeep Reddy