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 am creating a dashboard that will display filters, reports and graphs. I need the reports to display without any borders or page numbers. For example, one of the reports has 3 columns which are all counts. I need the report to display without any headings, borders or page numbers. The report size will be just big enough to display the content. See example below. Thanks.
Claims Bills Procedures
112,094 20,987 38,209
This message has been edited. Last edited by: Michele Brooks,
TABLE FILE CAR
SUM
MAX.CAR.BODY.SALES AS 'Claims'
AVE.CAR.BODY.SALES AS 'Bills'
MIN.CAR.BODY.SALES AS 'Procedures'
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=DATA,
FONT='ARIAL',
SIZE=20,
BACKCOLOR=( 'WHITE' RGB(235 235 240) ),
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
FONT='ARIAL',
SIZE=24,
COLOR='BLACK',
BACKCOLOR='WHITE',
STYLE=-UNDERLINE+BOLD,
$
ENDSTYLE
END
Thank you so much Chaudhary. Your example worked. Thanks for creating a Car File example that I could run. I just changed the SUM to SUM COMPUTE so that I could define the format as I11C. I need the counts to display with a comma. Thanks again.