New2Baan
11th September 2012, 19:22
What is the print expression for not printing the first 9 characters of a field? In other words, I only want the report output of a field to be what ever is at the end of the field starting in position 10.
Thanks.

benito
11th September 2012, 20:12
domain tcmcs.str12 item

item = tcibd001.item(10;12)

bdittmar
12th September 2012, 11:03
What is the print expression for not printing the first 9 characters of a field? In other words, I only want the report output of a field to be what ever is at the end of the field starting in position 10.
Thanks.

Hello,

in LN the itemcode is domain tcitem = string(47)

So use :

tcibd001.item(10;38) from position 10 to end !

Regards

New2Baan
12th September 2012, 18:41
Thank you! That worked great!