As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I need to output some fields in a long fixed string. several fields are alpha and that works wel, but some are numbers and that does not work well.
DEFINE FILE CAR
CD1/A3='500';
CD2/A4='AKCO';
COUNTRY/A2='NL';
AMOUNT1/D11.2c=ABS(SALES);
AMOUNT/A11=FTOA(AMOUNT1, '(D11.2c)', 'A11');
STRING/A20=CD1|CD2|AMOUNT|COUNTRY;
END
TABLE FILE CAR
PRINT STRING
BY COUNTRY NOPRINT
END
This does not give the proper result, the amount is concatenated so not all the lines are equal size. Should be easy...This message has been edited. Last edited by: FrankDutch,
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006
In HTML it looks like the lines are not equal in size, but I think they are:
-Fred-
DEFINE FILE CAR
CD1/A3='500';
CD2/A4='AKCO';
COUNTRY/A2='NL';
AMOUNT1/D11.2C=ABS(SALES);
AMOUNT/A11=FTOA(AMOUNT1, '(D11.2c)', 'A11');
STRING/A20=CD1|CD2|AMOUNT|COUNTRY;
END
TABLE FILE CAR
PRINT STRING
BY COUNTRY NOPRINT
ON TABLE HOLD FORMAT ALPHA
END
-RUN
-HTMLFORM BEGIN
<html>
<pre>
!IBI.FIL.HOLD;
</pre>
</html>
-HTMLFORM END
This will give you a text report, with formatting.
You can then create a master, and retable the file as a data source.
e.g.
TABLE FILE CAR
PRINT COUNTRY
CAR
MODEL
SALES/I9C
RETAIL_COST/D10.2M
ON TABLE SAVE AS TMP_TEXT FORMAT WP
END
-RUN
FILEDEF TMP_TEXT DISK tmp_text.wp (LRECL 132 RECFM V
EX -LINES 5 EDAPUT MASTER,TMP_TEXT,CV,FILE
FILENAME=TMP_TEXT, SUFFIX=FIX,$
SEGNAME=TMP_TEXT, $
FIELD=PRNTCTL ,ALIAS= ,A2 ,A2 ,$
FIELD=ROW ,ALIAS= ,A130 ,A130 ,$
-RUN
TABLE FILE TMP_TEXT
PRINT ROW
ON TABLE SET SHOWBLANKS ON
ON TABLE SET STYLE *
FONT=COURIER NEW, $
ENDSTYLE
END