Focal Point
[SOLVED] text output not aligning properly

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

March 23, 2020, 03:27 PM
sumant
[SOLVED] text output not aligning properly
Hello All,

I am creating a text output file for one of my downstream systems to read.
There are only 2 columns. The data in the columns is not of fixed width.
I have tried output formats TABT and WP.
WP works well for my needs, but the first 2 rows and left column are always empty which is making the downstream system to reject the file even though it has data.
The TABT output doesn't work well because the data is not of fixed width.
Below is a sample code.

SET LINES=999999

FILEDEF lmmclient DISK C:\\WSS.txt
-RUN


TABLE FILE CLIENT
PRINT
CLIENT.CLIENT.ID
CLIENT.CLIENT.NAME
-*ON TABLE SAVE AS lmmclient FORMAT WP NOCC
ON TABLE SAVE AS lmmclient FORMAT TABT
END

Can someone suggest how the data can always start at left most column and first row?
Thanks in advance for the help.

This message has been edited. Last edited by: FP Mod Chuck,


WebFOCUS 7.7.02Windows
Output Formats: Excel, HTML, PDF
March 23, 2020, 03:38 PM
MartinY
Does
FORMAT COM

may suits your need ?


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
March 23, 2020, 03:47 PM
sumant
Thanks for the reply Martin.
Formatted by comma unfortunately does not suite the requirements as my downstream system reads multiple feeds in the same format.
I have to match the other feeds.


WebFOCUS 7.7.02Windows
Output Formats: Excel, HTML, PDF
March 23, 2020, 03:56 PM
Waz
I would suggest forcing the width or changing to another format.

XML or ALPHA perhaps.

To force the width add /A{nnn} to the fields


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

March 23, 2020, 03:58 PM
Waz
Whats the common format ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

March 23, 2020, 04:02 PM
sumant
Hello Waz,

The output expectation is a text file.
When I try format ALPHA, the spacing issue is gone.
However its counting and printing the number characters before the actual data.
e.g: 000009A-BR-0158 The output should just be A-BR-0158


WebFOCUS 7.7.02Windows
Output Formats: Excel, HTML, PDF
March 23, 2020, 04:05 PM
Waz
Either use a DEFINE or COMPUTE or /{format} to force it to not be variable length fields.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

March 23, 2020, 04:25 PM
sumant
Thanks Waz. DEFINE helped. However there are no headers.
This is my first time using format ALPHA.
Does it not display headers?


WebFOCUS 7.7.02Windows
Output Formats: Excel, HTML, PDF
March 23, 2020, 04:37 PM
Waz
ALPHA doesn't

You may have to add them in via other methods or check out other formats, there are many.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

March 23, 2020, 04:38 PM
sumant
Many Thanks Waz.


WebFOCUS 7.7.02Windows
Output Formats: Excel, HTML, PDF