kzhangkzhang
Programmer
I am using Oracle 6i. Here is an example of output of my report:
Component Seq SubInv Quantity
========= === ====== ========
018-1071 10 test1 10
test2 20
<=== blank line
test3 30
018-1234 20 test1 20
<=== blank line
<=== blank line
test2 30
Notice that there is a complete blank line after 2nd line of result; Also, there are 2 blank lines after line 5.
There is no question about the query the report using.
My question is is there an easy way not printing those blank lines without modifying the original SQL query?
I am thinking I can use format trigger...however, I just realize the format trigger only can hide information, not delete information.
Any suggestion would be greatly appreciated...
Component Seq SubInv Quantity
========= === ====== ========
018-1071 10 test1 10
test2 20
<=== blank line
test3 30
018-1234 20 test1 20
<=== blank line
<=== blank line
test2 30
Notice that there is a complete blank line after 2nd line of result; Also, there are 2 blank lines after line 5.
There is no question about the query the report using.
My question is is there an easy way not printing those blank lines without modifying the original SQL query?
I am thinking I can use format trigger...however, I just realize the format trigger only can hide information, not delete information.
Any suggestion would be greatly appreciated...