cancel
Showing results for 
Search instead for 
Did you mean: 

address window problem

Former Member
0 Kudos

Hi Experts,

I have one issue in script. I wanted to print street info on my address window.

So, I have written the code under ADDRESS... ENDADDRESS. But the desired

field i.e. street info is overwriting the previous contanct.

I have written the code like

ADDRESS DELIVERY

NAME &KNA1-NAME1& &KNA1-NAME2& &KNA1-NAME3&

STREET &STREET1& &STREETINFO&

ENDADDRESS.

But the output is printing like

John D'costa

STREET2

STREET1

I wanted to print STREET2 after STREET1. Pls suggest.

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member196280
Active Contributor
0 Kudos

Try like this...

/: ADDRESS DELIVERY

/: NAME &KNA1-NAME1& &KNA1-NAME2& &KNA1-NAME3&

/: STREET &STREET1&

/: STREET &STREETINFO&

/: ENDADDRESS.

If output is not coming as desired then change it like this

/: ADDRESS DELIVERY

/: NAME &KNA1-NAME1& &KNA1-NAME2& &KNA1-NAME3&

/: STREET &STREETINFO&

/: STREET &STREET1&

/: ENDADDRESS.

Regards,

SaiRam

Former Member
0 Kudos

Hi Neha,

first u should increse the address window size & use the varible window it wiil wxpand dynamically. write like this.

ADDRESS DELIVERY

NAME &KNA1-NAME1&

&KNA1-NAME2&

&KNA1-NAME3&

STREET &STREET1&

&STREETINFO&

ENDADDRESS

i think it will work

Former Member
0 Kudos

Try printing the data without the address nodes

I also have problems with these nodes, and when i want different printing than i normally do, i print the fields myself, and do not use the address node.

Greetz Peter