2006 Nov 30 6:33 AM
hi friends,
i a classical report, am facing a prob displaying the headings.
one of the column, for eg is Rate of Duty. I want the output length of this column to be 7....but if i give this the heading is getting truncated...i want the heading to come like this,
rate of
duty. (in multiple lines, not in one long single line)
can any one help....
2006 Nov 30 6:43 AM
Hi Shakir,
I hope the following code will helps you.
WRITE: / 0(10) 'Material', 10(7) 'Rate of'.
WRITE: / 10(7) 'duty'.
Regards
Bhupal Reddy
2006 Nov 30 6:37 AM
Hi,
You can do it automatically bu setting the column length. You have to manually program it (using the WRITE statement).
Regards,
Anand Mandalika.
2006 Nov 30 6:38 AM
Hi,
Print Rate of in your first line &
Duty in second line , then start printing your output data.
Regards,
Raghavendra
2006 Nov 30 6:43 AM
2006 Nov 30 6:43 AM
Hi Shakir,
I hope the following code will helps you.
WRITE: / 0(10) 'Material', 10(7) 'Rate of'.
WRITE: / 10(7) 'duty'.
Regards
Bhupal Reddy