Focal Point
Triple Space batch reports

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2681034292

July 21, 2008, 06:01 PM
JackieInLR
Triple Space batch reports
Is there a way to triple space reports? A report was requested of us with additional space to allow more signature room.

Thanks,
Jackie


WebFocus 7.1.4, ZOS / USS, Output formats: HTML, Excel, PDF..... Mainframe Focus 7.3.3
July 21, 2008, 06:33 PM
Darin Lee
Your best bet on that one is to just increase the TOPGAP/BOTTOMGAP which increases the amount of space between lines. These are set in the stylesheet and are described in your documentation.


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
July 21, 2008, 06:40 PM
Darin Lee
Another option would be to add a subfoot at your lowest sort level and then
ON BYFIELD SUBFOOT
" "
" "

or
ON BYFIELD UNDER-LINE
(but I guess the last one only gets you double spacing. oh well.)


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
July 22, 2008, 04:33 AM
Danny-SRL
Jackie,

Does that mean that you want to have 2 blank lines between each report line? Or just at some sort break? Is your output HTML or PDF?


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

July 22, 2008, 09:04 AM
JackieInLR
Yes I'm looking for 2 blank lines between each detail line. And I guess I failed to really mention that I'm doing this in batch on our mainframe in Focus 7.3.3 on MVS. Our HR dept wants a paper report with enough rooms for a signature on each line.

Hope you can help me out with this!

Jackie


WebFocus 7.1.4, ZOS / USS, Output formats: HTML, Excel, PDF..... Mainframe Focus 7.3.3
July 22, 2008, 09:18 AM
mgrackin
Jackie,

Make sure you have sort phrases (BY) that will uniquely identify each record. Then add a SUBFOOT to the last BY phrase.

Here is an example using the CAR file:

TABLE FILE CAR
PRINT RCOST DCOST
BY COUNTRY
BY CAR
BY MODEL
BY BODYTYPE
ON BODYTYPE SUBFOOT
" "
" "
END


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011
July 22, 2008, 09:21 AM
mgrackin
Depending on your output format you could also just increase the BOTTOMGAP of each line.

Here's an example for PDF output format.

TABLE FILE CAR
PRINT RCOST DCOST
BY COUNTRY
BY CAR
BY MODEL
BY BODYTYPE
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=DATA, BOTTOMGAP=0.75,$
END


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011
July 22, 2008, 09:37 AM
PBrightwell
You can use Mickey's suggestion or

TABLE FILE CAR
PRINT
COUNTRY
BY CAR
ON CAR SUBFOOT
" END

WHERE 2 Is the additional number of lines you want to skip. If you dont have any unique sort fields, you can:

DEFINE FILE CAR
SPC/A1=' ';
END
TABLE FILE CAR
PRINT COUNTRY
OVER SPC
OVER SPC
END


Pat
WF 7.6.8, AIX, AS400, NT
AS400 FOCUS, AIX FOCUS,
Oracle, DB2, JDE, Lotus Notes
July 22, 2008, 09:59 AM
JackieInLR
WOW! Great suggestions everybody! Thanks so much for your help.

Jackie


WebFocus 7.1.4, ZOS / USS, Output formats: HTML, Excel, PDF..... Mainframe Focus 7.3.3
July 22, 2008, 03:54 PM
Leah
And if all else fails, create a computed 'blank filed' and put in a fold line after the last variable or use over, in combo with skip-line.

New feature request IB have skip-line have a numeric option. Music


Leah
July 22, 2008, 04:04 PM
JackieInLR
Great idea, Leah, thanks!

Jackie


WebFocus 7.1.4, ZOS / USS, Output formats: HTML, Excel, PDF..... Mainframe Focus 7.3.3