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.
Hi Guys, I am creating a report below is the code:-
TABLE FILE CAR1 SUM CAR1.BODY.SEATS CAR1.BODY.DEALER_COST BY CAR1.ORIGIN.COUNTRY BY CAR1.COMP.CAR ACROSS LOWEST CAR1.CARREC.MODEL ACROSS-TOTAL AS 'TOTAL' ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET ASNAMES ON ON TABLE SET EXPANDBYROW ON ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLEMBEDIMG ON ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty, $ TYPE=DATA, ACROSSCOLUMN=N1, DRILLMENUITEM='DrillDown 1', FOCEXEC=IBFS:/WFC/Repository/Test/New_Folder1/DRILL1.fex, TARGET='_blank', $ ENDSTYLE END
So, i have a report in which:- 1. accordian report EXPANDBYROW is on. 2. We have Across Total 3. Drill down is there for measure fields for the drill down on across columns i have used TYPE=DATA, ACROSSCOLUMN=N1
so i am also getting drill down in my across total i don't want that so how can i remove drill down in ACROSS TOTAL data columns ?
Since Row total dosen't works in Accordian that's why i have used accordian or is there a way we can use ROW total in accordian ?
WF version:- 8204This message has been edited. Last edited by: FP Mod Chuck,
Webfocus 8.x Windows PDF,HTML,XLSX
Posts: 58 | Location: India | Registered: June 01, 2018
TABLE FILE CAR
SUM SEATS
DEALER_COST
BY COUNTRY
BY CAR
BY TOTAL COMPUTE COLID /I2 = 1;
BY MODEL
ON TABLE HOLD AS DETDATA
END
-RUN
TABLE FILE CAR
SUM SEATS
DEALER_COST
BY COUNTRY
BY CAR
BY TOTAL COMPUTE COLID /I2 = 2;
BY TOTAL COMPUTE MODEL /A24 = 'Total';
ON TABLE HOLD AS TOTDATA
END
-RUN
TABLE FILE DETDATA
SUM SEATS
DEALER_COST
BY COUNTRY
BY CAR
BY COLID
BY MODEL
ON TABLE HOLD AS RPTDATA
MORE
FILE TOTDATA
END
-RUN
TABLE FILE RPTDATA
SUM SEATS
DEALER_COST
BY COUNTRY
BY CAR
ACROSS COLID NOPRINT
ACROSS MODEL
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE SET EXPANDBYROW ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=DATA,
ACROSSCOLUMN=N1,
WHEN=COLID EQ 1,
DRILLMENUITEM='DrillDown 1', FOCEXEC=IBFS:/WFC/Repository/Test/New_Folder1/DRILL1.fex,
TARGET='_blank',
$
ENDSTYLE
END
When posting code or sample output, please use the code tag which is the last icon on the ribbon
</>
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013