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 am looking to get a link to be just on BMW column.
The code is below.
GRAPH FILE CAR SUM SEATS BY MODEL ACROSS CAR ON GRAPH SET LOOKGRAPH VBRSTK1 ON GRAPH SET GRMERGE ON ON GRAPH SET GRAPHSTYLE * setPlace(true); ENDSTYLE ON GRAPH SET STYLE * TYPE=DATA, TARGET='_blank', FOCEXEC=TEST.fex,$ END
Any help is apreciated.
Thanks, DREDDY.This message has been edited. Last edited by: dreddy_23,
Prod: WebFOCUS 8.1.05 on Win 10 Test: WebFOCUS 8.1.05 on Win 10
If it's always the same column, then this works. If the column number will be dynamic, then you have to get more creative.
GRAPH FILE CAR
SUM SEATS
BY MODEL
ACROSS CAR
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setPlace(true);
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, COLUMN=SEATS(3), TARGET='_blank', FOCEXEC=TEST.fex,$
ENDSTYLE
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Carrying on from Dan's suggestion, here is a more general solution:
-* File dreddy01.fex
-SET &CAR=BMW;
TABLE FILE CAR
SUM
CAR NOPRINT
COMPUTE LL/I3=LL+1;
BY CAR NOPRINT
WHERE TOTAL CAR EQ '&CAR';
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE SAVE
END
-RUN
-READ SAVE,&POS
-RUN
GRAPH FILE CAR
SUM
SEATS
BY MODEL
ACROSS CAR
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setPlace(true);
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, COLUMN=SEATS(&POS), TARGET='_blank', FOCEXEC=TEST.fex,$
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
DEFINE FILE CAR
DRILL_FLAG/I1 = IF (CAR EQ 'BMW') THEN 1 ELSE 0 ;
END
-*
GRAPH FILE CAR
SUM DRILL_FLAG NOPRINT
BY MODEL
-*
SUM SEATS
BY MODEL
ACROSS CAR
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setPlace(true);
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, COLUMN=SEATS(*), WHEN=DRILL_FLAG NE 0, TARGET='_blank', FOCEXEC=TEST.fex,$
ENDSTYLE
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007