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.
how can i fixing the column c2 width ? i use warp=2 , it's not good,
because the uppercase XXX width is different with lowercase Xxx , so if i have 30 pages with one report , the report width is changed when i click next page ....
so how to fixing the column=n2 width ?
Thanks, James YangThis message has been edited. Last edited by: Kerry,
Well, warp is not a recognised style sheet declaration so it won't achieve the results you expect. You can use WRAP=n to set a column's width to any value you need as shown below:
TABLE FILE CAR
PRINT CAR
MODEL
BY COUNTRY
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN, $
TYPE=REPORT, COLUMN=N1, WRAP=3, $
ENDSTYLE
END
I don't have a WF environment to test it but it should give you an idea.
the report width is changed when i click next page
If what you want is for the report width to remain "fixed" you might need to get rid of the automatic wrapping that occurs naturally in HTML and set each column's width explicitly.
TABLE FILE ..
ON TABLE SET STYLE *
TYPE=REPORT, WRAP=OFF, $
TYPE=REPORT, COLUMN=N1, WRAP=3, $
TYPE=REPORT, COLUMN=N2, WRAP=2, $
...
ENDSTYLE
END
You can also research and play with the SQUEEZE=n style sheet declaration to try out different alternatives.