Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]string output

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED]string output
 Login/Join
 
Virtuoso
posted
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, 2006Report This Post
Expert
posted Hide Post
Do you have a character that separates these fields, a space perhaps?


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
<FreSte>
posted
Frank,

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
 
Report This Post
Virtuoso
posted Hide Post
Francis

they want it without a separation
but with a space separation the result will be the same I think




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, 2006Report This Post
Expert
posted Hide Post
Here is a suggestion..

Use HOLD FORMAT WP.

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


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!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Virtuoso
posted Hide Post
thx

I think Fred was right, when I did a hold format Alpha it appeared to be right.

The tric WAZ suggested is an interesting solution also.




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, 2006Report This Post
Platinum Member
posted Hide Post
Frank,

Another cat skinner; PUTDDREC in your DEFINE or COMPUTE offers a solution if you don't need an MFD.

OUT1/I1 = PUTDDREC('PUTDD1',6, STRING, 20, OUT1);



In FOCUS since 1985 - WF 8.009/8.104 Win 8 Outputs: ALL of 'em! Adapters: Sql Server Teradata Oracle
 
Posts: 161 | Location: Dallas, TX | Registered: February 20, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]string output

Copyright © 1996-2020 Information Builders