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'm running a report, format HTML. I'm using the "ROTATING COLUMN TEXT TITLE" technique suggested at the Focal Point Summit 2007. For example:
DEFINE FILE MYFILE
MYFIELD/A130 = div STYLE="writing-mode:tb-rl;filter:flipv fliph;font-size:12px;"'|THEFIELD|'/div';
END
This technique works fine. However, the value of the defined field (MYFIELD) now includes all the formatting information. So when I call the value of that field to use for a drill down report.
.....
TYPE=DATA,ACROSSCOLUMN=EMPNUMBER,FOCEXEC=DETAILS (MYFIELD=MYFIELD),$ I get an incorrect value being passed to my drill down focexec.
BTW, it looks like this "flipping" thing can be simplified:
DEFINE FILE GGSTORES
MYFIELDTBRL/A200 =
'<div style="writing-mode: tb-rl; cursor: pointer;">'
| STORE_NAME | '</div>';
END
TABLE FILE GGSTORES
PRINT
STORE_NAME NOPRINT
MYFIELDTBRL AS 'STORE'
BY STATE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, BORDER=1, BORDER-COLOR=SILVER, FONT='ARIAL', SIZE=8, $
TYPE=DATA, COLUMN=MYFIELDTBRL, FOCEXEC=TEST (STORE_NAME=STORE_NAME), $
END
I have the cursor style in there because there's a drilldown hyperlink on that field.
A variation:
TABLE FILE GGSTORES
PRINT
STORE_NAME
BY STATE
ON TABLE HOLD AS H001 FORMAT HTMTABLE
ON TABLE SET PAGE NOLEAD
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF, $
TYPE=DATA, COLUMN=STORE_NAME, CLASS=RotateLink, FOCEXEC=TEST (STORE_NAME=STORE_NAME), $
END
-RUN
-HTMLFORM BEGIN
<HTML>
<HEAD>
<STYLE>
TABLE
{
border-collapse: collapse;
}
TD
{ font-family: Arial, sans-serif; font-size: 12px; border: 1px solid silver; }
.RotateLink
{ writing-mode: tb-rl; cursor: pointer; }
</STYLE>
</HEAD>
<BODY>
!IBI.FIL.H001;
</BODY>
</HTML>
This message has been edited. Last edited by: Francis Mariani,
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
DEFINE FILE GCSTORES
MYFIELDTBRL/A200 =
'<div style="writing-mode: tb-rl; cursor: pointer;">'
| STORE_NAME | '</div>';
CONTACTS/I9 = IF ADDRESS1 NE ' ' THEN 1 ELSE 0;
END
-RUN
TABLE FILE GCSTORES
SUM CONTACTS
ACROSS MYFIELDTBRL AS ' '
BY STORE_CODE
BY STATE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=DATA, BORDER=1, BORDER-COLOR=SILVER, FONT='ARIAL', SIZE=8, $
TYPE=DATA, ACROSSCOLUMN=CONTACTS, FOCEXEC=DETAILS (STORE_NAME=STORE_NAME), $
END
I'm trying to capture the value of store_name at the points of intersection
If you use a column in a drill-down, it needs to be mentioned in the TABLE request, not just in the DEFINE. Try:
DEFINE FILE GCSTORES
MYFIELDTBRL/A200 =
'<div style="writing-mode: tb-rl; cursor: pointer;">'
| STORE_NAME | '</div>';
CONTACTS/I9 = IF ADDRESS1 NE ' ' THEN 1 ELSE 0;
END
-RUN
TABLE FILE GCSTORES
SUM CONTACTS
ACROSS STORE_NAME NOPRINT
ACROSS MYFIELDTBRL AS ' '
BY STORE_CODE
BY STATE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=DATA, BORDER=1, BORDER-COLOR=SILVER, FONT='ARIAL', SIZE=8, $
TYPE=DATA, ACROSSCOLUMN=CONTACTS, FOCEXEC=DETAILS (STORE_NAME=STORE_NAME), $
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