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 have tried to wrap the columns in report assistant but its not happening.Please find the sample code using car created in report assistant.
TABLE FILE CAR
BY CAR.COMP.CAR
BY CAR.ORIGIN.COUNTRY
BY CAR.BODY.DEALER_COST
BY CAR.CARREC.MODEL
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT,
GRID=ON,
$
TYPE=REPORT,COLUMN=N4, SQUEEZE=1.0,WRAP=1.0,$
ENDSTYLE
ON TABLE NOTOTAL
ON TABLE SET BYDISPLAY OFF
END
Here the code TYPE=REPORT,COLUMN=N4, SQUEEZE=1.0,WRAP=1.0,$ using for wraping the column but its not helping to wrap.
Please help on this.Thanks.
Version: Webfocus 7.6.11This message has been edited. Last edited by: Kerry,
WebFOCUS generates this CSS that modifies the default width of MODEL:
.x2 { width:72pt; text-align:left; }
Change the WRAP number to see the difference - a higher number (e.g. 5) will force the column to be wider. For HTML reports, this only works when HTMLCSS is set to ON.
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
Thanks for your Replies.Wraping is happening fine while am tring this in a normal fex file but the same above wrap code not working in report assistant tool.Thats the issue.
Waz - WRAP is enough for wrapping the line.Just i checked the previous forums mentioned for one of the issue added SQUEEZE to check to solve this.But both specificed in the code have no advantage i guess.