Application Development and Automation 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: 
Read only

report output display problem

Former Member
0 Likes
346

I developed purchase register for vendor wise when i am displaying out put it is taking 4 lines gap for each vendor.

my output is coming as below.

Afton chemicals 100020 01.2.2008

sector 6 10021 02.2.2008

Mumbai.

here it is taking 4 line space

indian additives 123456 09.02.2008

sector 20 124567 10.02.3008

newdelhi

here it is taking 4 lines space

abatap chemicals 456789 12.03.2008

deonar 123456 13.03.2008

mumbai

again 4 lines space it is taking.

i have given line-count 10.

in my pogram i have used with in loops

reserved 8 lines and back statement.

how to reduce space between each vendor.

i written code as ..

report puchase order line-count 10.

loop at output.

onchange of output-name1.

reserved 8 lines.

write: output-date , output-amount.

back.

endon.

write: output-billno.

I developed purchase register for vendor wise when i am displaying out put it is taking 4 lines gap for each vendor.

my output is coming as below.

Afton chemicals 100020 01.2.2008

sector 6 10021 02.2.2008

Mumbai.

here it is taking 4 line space

indian additives 123456 09.02.2008

sector 20 124567 10.02.3008

newdelhi

here it is taking 4 lines space

abatap chemicals 456789 12.03.2008

deonar 123456 13.03.2008

mumbai

again 4 lines space it is taking.

i have given line-count 10.

in my pogram i have used with in loops

reserved 8 lines and back statement.

how to reduce space between each vendor.

i written code as ..

report puchase order line-count 10.

loop at output.

onchange of output-name1.

reserved 8 lines.

write: output-date , output-amount.

back.

endon.

write: output-billno.

1 REPLY 1
Read only

romanweise
Active Contributor
0 Likes
329

Hi,

the reason for your program behaviour is the combination of reserve 8 lines. and the back. statement You could either reduce the number of 8 lines, try to do without back or use a simple skip.

Rgds.

Roman Weise