smudiam
21st June 2016, 13:54
I'm considering header text in purchase orders as a field.
I should display that field which is of domain type "tctxtn" on Baan Report. the text field must display in Upper case.

Can anyone provide solution????


Thanks in Advance.....

mark_h
21st June 2016, 16:30
Well you could always convert the text(text.to.buff) into a buffer then use toupper$ on it. That was the first thing that popped into my mind. The problem is then you have to write each line of text. You could write the text to a file and try it that way. Maybe another solution in ln that I am not aware of.

JaapJD
22nd June 2016, 09:14
You can do this in the report script:

field.tdpur400.txta:
before.print:
lattr.prline = toupper$(lattr.prline)

Note that there may already be code for this textfield in the report script. Then you only need to add the last line.