2008 Jun 13 4:47 PM
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
2008 Jun 13 5:06 PM
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.
2008 Jun 13 5:12 PM
May be you have to translate all the texts from Chinese to english. You can do this from SE38->Goto->Translation.
Regards,
Joy.
2008 Jun 13 5:25 PM
What is your logon language?
The language that you give when you login to sap?
Is it not EN?
2008 Jun 13 5:57 PM
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