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.
Is there a way to lock the width of a single column in a report when using ON TABLE SET AUTOFIT ON?
I have a table where I want the first BY column to be locked to a specific size and have the other columns in my ACROSS adjust to fit the window size. I wasn't able to find anything that allowed me to do this looking through the GUI unfortunately...This message has been edited. Last edited by: capples,
WF 8.2.0.3 Windows 10 64bit HTML, AHTML, PDF, Excel
I tried setting the WIDTH, but it didn't seem to work. I did stumble upon setting SQUEEZE to a value and that seemed to give me the results I wanted after playing with it.
TYPE=REPORT,
COLUMN=N1,
SQUEEZE=1.5,
$
Thanks, Clint
WF 8.2.0.3 Windows 10 64bit HTML, AHTML, PDF, Excel
TABLE FILE IBISAMP/CAR
SUM
COMPUTE THISISAREALLYREALLYLONGTITLE/A100 = 'this is a really really long value';
MPG
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=REPORT,
COLUMN=N1,
WRAP=0.500000,
$
ENDSTYLE
END
doesn't work in HTML, but will in PDF. no change when I try ON TABLE SET AUTOFIT ON or ON TABLE SET HTMLCSS ON
is there something I am missing?!?
_____ WF 8.1.04 Win 7// Windows Server 2012 R2 SASS OLAP Cube
The Issue seems to be the FIELDNAME. Using AS should fix the problem.
TABLE FILE IBISAMP/CAR
SUM
COMPUTE THISISAREALLYREALLYLONGTITLE/A100 = 'this is a really really long value'; AS 'This,Is,A,Really,Long,Title'
MPG
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=REPORT,
COLUMN=N1,
WRAP=0.500000,
$
ENDSTYLE
END