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.
Wrapping a column is not happening in report assistant.I have to display some of 7 columns in the HTML output.One of the column is very lengthy and need to wrap it to fit with in the output page.
Using the following code: ON TABLE SET STYLE * TYPE=REPORT,COLUMN=N5,WRAP=4.001,$
But this code is not helping to solve the issue.
Please Help.
Thanks, Veda
Webfocus version : 7.6.6This message has been edited. Last edited by: Kerry,
TABLE FILE XYZ
PRINT
XYZ.XYZ.RESOURCE_NAME AS 'Resource, Name'
XYZ.XYZ.EMP_TYPE_NAME AS 'Resource, Category'
XYZ.XYZ.MANAGER_NAME AS 'Manager, Name'
XYZ.XYZ.RP_NAME AS 'Resource, Pool Name'
XYZ.XYZ.RP_MANAGER_NAME AS 'Resource, Pool Manager Name'
XYZ.XYZ.EXCEPTION_REC AS 'Exception'
WHERE (XYZ.XYZ.LEVEL_1_CODE EQ '&Code1');
HEADING
"Resource ManagerReport"
FOOTING
"Report Created on &DATEMtrDYY @ <TIME"
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
-INCLUDE IBFS:/CFG/FILE/IBI_HTML_DIR/javaassist/intl/EN/123.sty
[COLOR:RED]TYPE=REPORT,COLUMN=N5,WRAP=4.01,$[/COLOR]
TYPE=REPORT, OBJECT=STATUS-AREA, LINES-PER-PAGE=UNLIMITED, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RESOURCE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.EMP_TYPE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RP_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.RP_MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=TITLE, COLUMN=XYZ.XYZ.EXCEPTION_REC,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.RESOURCE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.EMP_TYPE_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.RP_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.RP_MANAGER_NAME,FONT=Tahoma,SIZE=9, $
TYPE=DATA, COLUMN=XYZ.XYZ.EXCEPTION_REC,FONT=Tahoma,SIZE=9, $
ENDSTYLE
ON TABLE PCHOLD FORMAT AHTML
ON TABLE NOTOTAL
ON TABLE SET EXPANDABLE OFF
END
Include SQEEZE in the style sheet will solve your issue.
example
TABLE FILE CAR
PRINT COUNTRY CAR MODEL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE SET EXPANDABLE OFF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, COLUMN=N3, SQUEEZE=1, WRAP=1, $
ENDSTYLE
END