2008 Apr 12 12:33 PM
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.
2008 Apr 12 11:50 PM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |