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.
Mikel, I tried your suggestion, and it works fine, except for when the column is of oracle type LONG. I'm using the oracle 9.1.2 JDBC driver.
The error message I get from WF is
(FOC280) COMPARISON BETWEEN COMPUTATIONAL AND ALPHA VALUES IS NOT ALLOWED
The LONG type in oracle is a blob. I've tried doing some transformations on the data, but Oracle prevents you from doing anything (including to_lob) unless you are inserting that data into a table. Any ideas on how to force WF to treat the column as a ALPHA? It is typed as an alpha in the master file.
Another way to prevents from collapsing sequences of whitespace (=pre tag) is using css styles (CSS white-space: pre; property)
I think this way will works with your blobs fields.
Example:
TABLE FILE CAR
PRINT
COUNTRY
COMPUTE CARMODEL/A40 = CAR | MODEL ;
ON TABLE HOLD AS REPORT FORMAT HTMTABLE
ON TABLE SET STYLE *
TYPE=DATA, CLASS=pre, $
END
-RUN
-HTMLFORM BEGIN
<style type="text/css">
.pre {
font: 1em courier new, monospace;
white-space: pre;
}
</style>
!IBI.FIL.REPORT;
-HTMLFORM END
Didn't work for me what browser versions is it supported on? I'm on MSIE 6.0.2900.2180.
Dan,
How about changing the USAGE option in the master file to get rid of the variable aspect of it? Not sure whether it will work as I don't have access to similar data, but it's worth a try?
Mikel and Tony, Thank you so much for your help! Worked like a charm!
Tony, to address this
quote:
How about changing the USAGE option in the master file to get rid of the variable aspect of it? Not sure whether it will work as I don't have access to similar data, but it's worth a try?
It doesn't make a difference if I do that
But, using what Mikel did, and you built upon I have what I needed!