Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

heding in classical report

abdulazeez12
Active Contributor
0 Kudos
114

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....

1 ACCEPTED SOLUTION

Former Member
0 Kudos
91

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

4 REPLIES 4

Former Member
0 Kudos
91

Hi,

You can do it automatically bu setting the column length. You have to manually program it (using the WRITE statement).

Regards,

Anand Mandalika.

Former Member
0 Kudos
91

Hi,

Print Rate of in your first line &

Duty in second line , then start printing your output data.

Regards,

Raghavendra

0 Kudos
91

write:/10 'rate of'

write:/12 'duty'.

Former Member
0 Kudos
92

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