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

Address syntax problem in script

rnb86
Participant
0 Likes
930

For this syntax in script

ADDRESS PARAGRAPH ZD LINES 8

NAME &BILL_NAME1&, &BILL_NAME2&, &BILL_NAME3&, &BILL_NAME4&

STREET &BILL_STRAS&

POBOX &BILL_PFACH& CODE &BILL_PSTL2& CITY &BILL_PFORT&

POSTCODE &BILL_PSTLZ&

REGION &BILL_REGIO&

CITY &BILL_ORT01&

COUNTRY &BILL_LAND1&

ENDADDRESS

Output I got is:

Pvt ltd

Postfach 123

111 KUWAIT

KUWAIT

But I need output in this format: po box must be written in English

Pvt ltd

PO BOX 123

111 KUWAIT

KUWAIT

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
913

Hi

split the address part into two as below . (Exclude the po box from address endaddress )

*ADDRESS PARAGRAPH ZD LINES 8NAME &BILL_NAME1&, &BILL_NAME2&, &BILL_NAME3&,&BILL_NAME4&*

STREET &BILL_STRAS&

ENDADDRESS

POBOX &BILL_PFACH& CODE &BILL_PSTL2& CITY &BILL_PFORT&

ADDRESS PARAGRAPH ZD LINES 8

POSTCODE &BILL_PSTLZ&

REGION &BILL_REGIO&

CITY &BILL_ORT01&

COUNTRY &BILL_LAND1&

ENDADDRESS

regards,

Ramya

Edited by: Ramya S on Oct 31, 2008 9:39 AM

8 REPLIES 8
Read only

Former Member
0 Likes
914

Hi

split the address part into two as below . (Exclude the po box from address endaddress )

*ADDRESS PARAGRAPH ZD LINES 8NAME &BILL_NAME1&, &BILL_NAME2&, &BILL_NAME3&,&BILL_NAME4&*

STREET &BILL_STRAS&

ENDADDRESS

POBOX &BILL_PFACH& CODE &BILL_PSTL2& CITY &BILL_PFORT&

ADDRESS PARAGRAPH ZD LINES 8

POSTCODE &BILL_PSTLZ&

REGION &BILL_REGIO&

CITY &BILL_ORT01&

COUNTRY &BILL_LAND1&

ENDADDRESS

regards,

Ramya

Edited by: Ramya S on Oct 31, 2008 9:39 AM

Read only

0 Likes
913

By splitting the PO BOX the whole address format changes.

For every country address differs in format so by splliting we couldn't get the format correctly

Read only

0 Likes
913

Hi

use address endadrress for the first half.

give po box

use address endadres for the second part as i wrote earlier.

are u facin problem with this?

Read only

0 Likes
913

By using split it doesn't format the address perfectly

Read only

Former Member
0 Likes
913

u chk ur language which u have given.

give it english.

Read only

0 Likes
913

Where to specify the language?

Read only

Former Member
0 Likes
913

HI,

There is no other way only you need to remove Address EndAddress and then write each statement line by line.

thanks,

Chidanand

Read only

0 Likes
913

By removing the address syntax we are going to specify only one format of address but by specifying address syntax it displays format according to the country.