Print alignment issue for a multiline text
In Oracle Reports, we are generating a multiline text and storing it in a single field and trying to print at the end of the invoice.
For some invoices, the alignment of multiline line text has been scattered. (sample screeshot attached)
Can anyone advise, how to fix this issue?
The multiline text is gererated using below script
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
FOR K1 IN C1 LOOP
EXIT WHEN C1%NOTFOUND;
T_STRING := 'SERIAL_NO'||CHR(9)||'REPAIR_STATUS'||CHR(9)||'WARRANTY'||CHR(13);
--T_STRING := T_STRING||CHR(9)||'_________'||CHR(9)||'_____________'||CHR(9)||'________'||CHR(13);
FOR K2 IN C2(K1.DELIVERY_NO) LOOP