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.
Hi, I'm building a report and I need that rows with a, for example, FIELD1 EQ '060', to be narrower than the others.
For all the rows equals: TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=6, RIGHTGAP=0.03, LEFTGAP=0.03, TOPGAP=0.050, BOTTOMGAP=0.050, LEFTMARGIN=0.60, METADATA='>GUIDE>show=1,snap=1,GRID>show=1,snap=1,sizex=4,sizey=4,RULER>show=1,
I've tried to use WHEN=FIELD1 EQ '060', before the $ but it doesn´t work:
If you use TYPE=REPORT, then your GAP will affect both DATA and TITLE. Also, TOPGAP and BOTTOMGAP affect the whole line of data. So, if you want specific lines of data to be affected use TYPE=DATA:
-* File vic01.fex
TABLE FILE CAR
SUM
SALES
BY LOWEST COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=DATA,
TOPGAP=0.5,
BOTTOMGAP=0.5,
WHEN=COUNTRY EQ 'ENGLAND',
$
ENDSTYLE
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
-* File vic01.fex
TABLE FILE CAR
SUM
SALES
BY LOWEST COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=DATA,
TOPGAP=0.3,
BOTTOMGAP=0.1,
WHEN=COUNTRY EQ 'ENGLAND' ,
$
TYPE=DATA,
TOPGAP=0.3,
BOTTOMGAP=0.1,
WHEN=COUNTRY EQ 'ITALY' ,
$
ENDSTYLE
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Thank you for your answer. What you say, works but in a simple report. The report I try to prepare use RIGHTGAP and LEFTGAP and I can`t use them in TYPE=DATA, in spite of it, I use SQUEEZE for the width of the columns, GRID=OFF, LEFTMARGIN=0.60 and these need to be used with TYPE=REPORT.
I've tried to do this and I get a report but the report doesn´t look like what I need: