Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] WebFOCUS 8.2.04 and TITLETEXT

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] WebFOCUS 8.2.04 and TITLETEXT
 Login/Join
 
Master
posted
Is anyone getting errors when they code
TYPE=REPORT, TITLETEXT='tab name', $ 
in a COMPOUND EXCEL sheet?

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,


Tomsweb
WebFOCUS 8.1.05M, 8.2.x
APP Studio, Developer Studio, InfoAssist, Dashboards, charts & reports
Apache Tomcat/8.0.36
 
Posts: 573 | Location: Baltimore, MD | Registered: July 06, 2006Report This Post
Platinum Member
posted Hide Post
Hello,

Mine is working fine for both XLSX and ELX2K.
What format are you using?
Can you provide some sample code?
 
Posts: 109 | Registered: February 02, 2016Report This Post
Guru
posted Hide Post
It looks like you have an extra quote at the tabname:

ITLETEXT='Inv. Rpt"

should be

ITLETEXT='Inv. Rpt'


Test: WF 8.2
Prod: WF 8.2
DB: Progress, REST, IBM UniVerse/UniData, SQLServer, MySQL, PostgreSQL, Oracle, Greenplum, Athena.
 
Posts: 454 | Location: Europe | Registered: February 05, 2007Report This Post
Expert
posted Hide Post
Frans, That's wierd, the 'extra quote" only shows in the error message, not in the code.
quote:
TYPE=REPORT, TITLETEXT='tab name', $




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Platinum Member
posted Hide Post
quote:
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, 2010Report This Post
Master
posted Hide Post
No, it is a mighty slippery fish.


Tomsweb
WebFOCUS 8.1.05M, 8.2.x
APP Studio, Developer Studio, InfoAssist, Dashboards, charts & reports
Apache Tomcat/8.0.36
 
Posts: 573 | Location: Baltimore, MD | Registered: July 06, 2006Report This Post
Master
posted Hide Post
[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 


Tomsweb
WebFOCUS 8.1.05M, 8.2.x
APP Studio, Developer Studio, InfoAssist, Dashboards, charts & reports
Apache Tomcat/8.0.36
 
Posts: 573 | Location: Baltimore, MD | Registered: July 06, 2006Report This Post
Expert
posted Hide Post
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'.
Smiler
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] WebFOCUS 8.2.04 and TITLETEXT

Copyright © 1996-2020 Information Builders