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: 

Numbers to be printed in chinese characters

Former Member
0 Kudos

I have to print the numbers in chinese characters . This is to be done in cheque printing for country china.

How we can arrive this?

For ex: 123 - It should be printed in chinese characters .

Can anyone tell me?? we have to maintain any table ??

3 REPLIES 3

Former Member
0 Kudos

Hi,

following link shows how to print address in chinese characters

have a look ...

[;

Hope u got the idea... to take language as 'ZH' for spras field

Best of Luck !!

Regards

Ravi

Former Member
0 Kudos

Hi,

so even if you login in EN you want to display the name in ZH Chinese and EN as well.

so in that case you wud have to make use of PERFORM command in Script in which you will retrieve the name based on the language(provided its maintained for both the languages in the Standard Table where you are fetching it from because its not the case of Translation).

Perform get_name in program <xyz>

using &kna1-kunnr&

changing &name_zh&

changing &name_en&

Program <xyz>

form get_name.

...........................................

"Here comes the code to read the using parameters in the perform command in script, KNA!-KUNNR

..........................................

select single name1

into wa_name_en "Pass this to name_en

from kna1

where kunnr = = <kna1-kunnr>

and spras = 'EN'.

select single name1

into wa_name_zh "Pass this to name_en

from kna1

where kunnr = = <kna1-kunnr>

and spras = 'ZH'.

.............................................

Here comes the code to pass the changing parameters to script

.............................................

endform.

Thanks & Regards,

ShreeMohan

0 Kudos

Hi Shree Mohan,

Did you get my problem.

1. For ex : 27 07 2009 then for 2 - chinese number 7 - chinese number 0 - chinese number

7 - chinese number 2 - chinese number 0- chinese number 0- chinese number 9 - chinese number

should be printed. For this I have to maintain values in Z-table or standard table.

2. The amounts in english should be printed in chinese language.

ex : 850.00 eight hundred and fifty - to be printed as chinese language.

how we can arrive this.

Regards

uma