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.
The error: "The embedded style sheet has an error in line 61. Keyword has illegal value: TITLETEXT='Inv. Rpt"This message has been edited. Last edited by: FP Mod Chuck,
The error: "The embedded style sheet has an error in line 61. Keyword has illegal value: TITLETEXT='Inv. Rpt"
Or is it a missing single quote mark? It looks like the message ends in a double quote character which could be the counterpart to the opening double quote character.
WebFOCUS 8.2.06
Posts: 210 | Location: Sterling Heights, Michigan | Registered: October 19, 2010
[QUOTE]Originally posted by Tomsweb: No, it is a mighty slippery fish. I played with this quite a bit and it works. Whew!!! Since the documentation is an embarrassment, it does not appear that the App Studio UI provides the ability to enter text for the TITLETEXT tag. Hence we have "to pin the tail on the donkey with one eye closed" and hope for the best.
TABLE FILE CAR
BY CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE SET XLSXPAGESETS ON
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT EXL2K OPEN
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
TITLETEXT='Country Report',
FONT='IBIDEFAULT',
SIZE=14,
COLOR='BLACK',
$
TYPE=DATA,
SIZE=12,
COLOR='RED',
STYLE=ITALIC,
$
TYPE=TITLE,
SIZE=13,
COLOR='BLUE',
BACKCOLOR='WHITE',
STYLE=BOLD+UNDERLINE,
$
ENDSTYLE
END
TABLE FILE CAR
SUM SALES
BY CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE SET XLSXPAGESETS ON
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
TITLETEXT='Sales Report',
FONT='IBIDEFAULT',
SIZE=14,
COLOR='BLACK',
$
TYPE=DATA,
SIZE=12,
COLOR='WHITE',
BACKCOLOR='BLACK',
STYLE=ITALIC,
$
TYPE=TITLE,
SIZE=13,
COLOR='WHITE',
BACKCOLOR='GREEN',
STYLE=BOLD+UNDERLINE,
$
ENDSTYLE
END
TABLE FILE CAR
SUM DEALER
BY CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE SET XLSXPAGESETS ON
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT EXL2K CLOSE
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
TITLETEXT='Dealer Report',
FONT='IBIDEFAULT',
SIZE=14,
COLOR='BLACK',
$
TYPE=DATA,
SIZE=12,
COLOR='WHITE',
BACKCOLOR='GREEN',
STYLE=ITALIC,
$
TYPE=TITLE,
SIZE=13,
COLOR='BLUE',
STYLE=BOLD+UNDERLINE,
$
ENDSTYLE
END
Excellent Tom! The only thing I'd change, besides those beautiful colors, is 'EXL2K' to 'XLSX'. But, I understand that this is just a POC. I'm keeping a copy, and reference, in my tool box so that I don't need to 'reinvent the wheel'.
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005