cancel
Showing results for 
Search instead for 
Did you mean: 

Split the large lines in SAP SCRIPT

suganya_rangarajan
Participant
0 Kudos

Hi,

I have to print the shippint point street address in a line.But the address is too big to fit in a given space.

Let me know how to split the line if too big.

Thanks

Suganya

Accepted Solutions (0)

Answers (2)

Answers (2)

suganya_rangarajan
Participant
0 Kudos

Thanks for you answer.i have given points.

suganya

Former Member
0 Kudos

hello,

In the print program u can split the address like this

data: lv_addr1(255),
        lv_addr2(255),
        lv_addr3(255).  " Length depending upon ur requirement

lv_addr1 = address+0(255).
lv_addr2 = address+256(255).
lv_addr3 = address+511(255).

Pass these variable in the form.

regards,

Vasanth