anushka_17
29th January 2015, 05:48
Hello everyone

I have 1 field tclnt102.refr....its a long description....I want to split into two parts bcoz...the report width is not enough to accomodate it.
For tht we need to split like this right:

tclnt102.refr(0;13)
tclnt102.refr(14;27)

My issue is where to write this in report layout...If in report fields..in print expression how to write this?

plz help

sachinbaan
29th January 2015, 06:06
hi,

I think you have written is correct,

example:

I m having sting of 500 characters. - error.message(500)
I want to split this in 5 lines,

in print expression
error.message(1;100)

&

in print length -> 100.

bhushanchanda
29th January 2015, 14:43
Hi,

Also make sure, in Baan/LN the array's start with 1 and not 0.

So, you will need -

tclnt102.refr(1;13)
tclnt102.refr(14;27)

And do as Sachin mentioned i.e. setting the length to what you need.