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) HTML - OVER

Read-Only Read-Only Topic
Go
Search
Notify
Tools
(solved) HTML - OVER
 Login/Join
 
Member
posted
I have created a report using the OVER command, but I've only been able to style column 1 for the entire report.
It appears that anything between each OVER command is not formatted?

This message has been edited. Last edited by: JA,


WF 8105
Linux, All Outputs
 
Posts: 4 | Registered: April 13, 2015Report This Post
Expert
posted Hide Post
Please post some code.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Here is the beginning of the code:

DEFINE FILE TABLE
BLANK/A10 = ' ';
LABELDIFF/A15 = 'Difference';
LABELPERC/A15 = 'Percentage';
LABELFULL/A15 = 'Full-Time';
LABELPART/A15 = 'Part-Time';

TABLE FILE TABLE
PRINT
BLANK AS '' OVER
T_TERM AS 'Class'
P_TERM AS ' '
LABELDIFF AS ' '
LABELPERC AS ' '
LABELFULL AS ' '
LABELPART AS ' ' OVER
END


WF 8105
Linux, All Outputs
 
Posts: 4 | Registered: April 13, 2015Report This Post
Master
posted Hide Post
JA,

Where is your stylesheet?


Eric Woerle
8.1.05M Gen 913- Reporting Server Unix
8.1.05 Client Unix
Oracle 11.2.0.2
 
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013Report This Post
Member
posted Hide Post
*TABLE_STYLE
$
TYPE=REPORT,
FONT='TIMES NEW ROMAN',
SIZE=12,
COLOR='BLACK',
STYLE=NORMAL,
$
TYPE=DATA,
COLUMN=N1,
BACKCOLOR=( 'WHITE' 'SILVER' ),
JUSTIFY=CENTER,
$
TYPE=DATA,
COLUMN=N2,
BACKCOLOR=( 'WHITE' 'SILVER' ),
JUSTIFY=CENTER,
$
TYPE=TITLE,
SIZE=12,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=TITLE,
COLUMN=N1,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N2,
JUSTIFY=CENTER,

$
TYPE=TABFOOTING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=TABFOOTING,
LINE=2,
JUSTIFY=CENTER,
$
TYPE=TABFOOTING,
LINE=2,
OBJECT=TEXT,
ITEM=1,
SIZE=10,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=GRANDTOTAL,
SIZE=10,
JUSTIFY=CENTER,
$
TYPE=TABHEADING,
SIZE=12,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=TABHEADING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=TABHEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
SIZE=12,
$
TYPE=TABHEADING,
LINE=2,
JUSTIFY=CENTER,
$
TYPE=TABHEADING,
LINE=2,
OBJECT=TEXT,
ITEM=1,
SIZE=12,
$
TYPE=TABFOOTING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=TABFOOTING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=HEADING,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=HEADING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=FOOTING,
SIZE=12,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=FOOTING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=FOOTING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
SIZE=12,
$
TYPE=ACROSSTITLE,
SIZE=12,
COLOR='WHITE',
BACKCOLOR=RGB(0 62 128),
$
TYPE=GRANDTOTAL,
SIZE=12,
$

*END


WF 8105
Linux, All Outputs
 
Posts: 4 | Registered: April 13, 2015Report This Post
Expert
posted Hide Post
DEFINE FILE CAR
BLANK/A10 = ' ';
LABELDIFF/A15 = 'Difference';
LABELPERC/A15 = 'Percentage';
LABELFULL/A15 = 'Full-Time';
LABELPART/A15 = 'Part-Time';
END

TABLE FILE CAR
PRINT
BLANK AS '' OVER
BODYTYPE AS 'CLASS'
WEIGHT AS ' '
LABELDIFF AS ' '
LABELPERC AS ' '
LABELFULL AS ' '
LABELPART AS ' ' OVER
BLANK AS ''

ON TABLE SET PAGE NOLEAD
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON, FONT='ARIAL',
SIZE=9, BORDER=1, BORDER-COLOR=SILVER,
$

TYPE=TITLE, COLUMN=BODYTYPE, COLOR=MAROON, $
TYPE=DATA, COLUMN=BODYTYPE, COLOR=RED, $
TYPE=DATA, COLUMN=WEIGHT, COLOR=ORANGE, $
TYPE=DATA, COLUMN=LABELDIFF, COLOR=GREEN, $
TYPE=DATA, COLUMN=LABELPERC, COLOR=BLUE, $
TYPE=DATA, COLUMN=LABELFULL, COLOR=PURPLE, $
TYPE=DATA, COLUMN=LABELPART, COLOR=SILVER, $
ENDSTYLE
END


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Thanks for your help Francis that worked!


WF 8105
Linux, All Outputs
 
Posts: 4 | Registered: April 13, 2015Report This Post
Expert
posted Hide Post
Hi JA,

Please update you first post here and add [SOLVED] or [CLOSED] to the title.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report 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) HTML - OVER

Copyright © 1996-2020 Information Builders