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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
Hi All, Greetings. I am trying to generate a PDF report where I need to have the back ground color of a column spanned to a limited width and height.
TABLE FILE CAR PRINT COUNTRY CAR SEAT ON TABLE SET ONLINE-FMT PDF ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * TYPE= REPORT,SIZE=8,$ TYPE= TITLE, BORDER=MEDIUM,$ TYPE= DATA, BORDER=MEDIUM, TOPGAP=0.1, BOTTOMGAP=0.1,$ ENDSTYLE END
In this case, the back ground color is applied to the whole column. But my need is to specify the back ground only on a specific width and height of the column. Can this be achieved? Thanks in advance.This message has been edited. Last edited by: Kerry,
Regards, Kasi Krishnan WF 7.1.4 & WF 7.6.9: Databases - DB2, SQL Server 2000. OS: Windows & AIX
TABLE FILE CAR PRINT COUNTRY CAR SEAT ON TABLE SET ONLINE-FMT PDF ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * TYPE= REPORT,SIZE=8,$ TYPE= TITLE, BORDER=MEDIUM,$ TYPE= DATA, BORDER=MEDIUM, TOPGAP=0.1, BOTTOMGAP=0.1,$ TYPE= DATA, COLUMN = N3, BACKCOLOR=RGB(50 50 230),$ ENDSTYLE END
is there anyway, we can apply the back ground colour only on a specific width and height inside the column.
Regards, Kasi Krishnan WF 7.1.4 & WF 7.6.9: Databases - DB2, SQL Server 2000. OS: Windows & AIX
TABLE FILE CAR
SUM
RETAIL_COST AS 'Retail Cost'
DEALER_COST AS 'Dealer Cost'
COMPUTE XPCT/P6.2B% = (RETAIL_COST / DEALER_COST) * 100; AS '%'
SALES AS 'Sales'
BY COUNTRY AS 'Country'
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=LANDSCAPE,
LEFTMARGIN = 0.550000,
RIGHTMARGIN = 0.250000,
TOPMARGIN = 0.35000000,
BOTTOMMARGIN= 0.55000000,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=10,
$
TYPE=REPORT, NAME='TITLE_1', OBJECT=BOX, POSITION=(0.55 0.90), DIMENSION=(0.95 0.20), BACKCOLOR=RED,$
ENDSTYLE
END
-RUN
JG correctly answered your question, although, this will answer your "new" criteria:
TABLE FILE CAR
SUM
RETAIL_COST AS 'Retail Cost'
DEALER_COST AS 'Dealer Cost'
COMPUTE XPCT/P6.2B% = (RETAIL_COST / DEALER_COST) * 100; AS '%'
SALES AS 'Sales'
BY COUNTRY AS 'Country'
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=LANDSCAPE,
LEFTMARGIN = 0.550000,
RIGHTMARGIN = 0.250000,
TOPMARGIN = 0.35000000,
BOTTOMMARGIN= 0.55000000,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=10,
$
TYPE=DATA, COLUMN=COUNTRY, BORDER=ON, BACKCOLOR=RED, WHEN=COUNTRY EQ 'JAPAN',$
ENDSTYLE
END
-RUN