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: 

printing address in chinese

Former Member
0 Kudos

Hi

I have a requirement to print address in chinese(ZH language).

currently we need to write down the Chinese address manually on envelop if mailing address is in China.

we would like to have the logic for the output. if there is Chinese name/address maintained in customer master, then use Chinese name/address. otherwise, use original English name/address to print on statement.

in sap script they are passing address number to get this address

/:   ADDRESS PARAGRAPH AF PRIORITY P LINES 10
/:     ADDRESSNUMBER &DKADR-ADRNR&
/:     FROMCOUNTRY &T001-LAND1&
/:   ENDADDRESS

Anyone help me out

Regards

Kumar

1 ACCEPTED SOLUTION

Former Member
0 Kudos
4 REPLIES 4

Former Member
0 Kudos

Former Member
0 Kudos

Hi,

I have not done this but you can try the following;

1. Create a standard text for the address in chinese langu.

2. Include the object to your address using INCLUDE keyword.

3. Check for the land if in layout and call the include based on it.

If this is working then we can try other options to make it langu specific code later.

If the hint is usefulu2026 Say thanks by rewardu2026.

Regards,

Prabhu Rajesh

0 Kudos

Hi Prabhu

My requirement is

If address(Chinese) maintained in customer master it should print in Chinesh. Note: Address only in Chinese character, rest in english

Else it should be in English.

anyone help me out

Regards

Kumar

0 Kudos

Hi

The following statement Printing the address like

ABC Ltd,

Attn. Ms.Suziki,

Waren electronics

Dongguan, China

5-6 Huafa RD, Yongkou, houjie.

China

/: ADDRESS PARAGRAPH AF PRIORITY P LINES 10
/: ADDRESSNUMBER &DKADR-ADRNR&
/: FROMCOUNTRY &T001-LAND1&
/: ENDADDRESS

anyone explain me, how the above statement working.