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: 7.7.03, LAST & Exl2K - Need a WAR

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Solved: 7.7.03, LAST & Exl2K - Need a WAR
 Login/Join
 
Platinum Member
posted
We are developing a report in 7.7.03 which will be formatting to exl2k. In the Computes we were using the LAST function which was not working correctly. Since excel2k w/LAST is not supported, does anyone have a different technique? This is multi-Veb request if that makes a difference. Bottom line, trying to get away from the Circular reference displayed from Excel.

We decided to use launch forms that will allow the users to make changes rather than to programtically try to make the changes for them. Thank you for all your suggestions.

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


WebFOCUS & ReportCaster 8.1.05, 7.7.03 - AIX/LINUX, FOCUS 7.6.13 MVS, Output PDF, XLS-XLSX, DOCX and HTML
 
Posts: 146 | Location: Atlanta, GA | Registered: May 31, 2007Report This Post
Virtuoso
posted Hide Post
I managed to create a multi-verb request which makes use of LAST to calculate a running total and displays results in EXL2K.

TABLE FILE CAR
SUM 
     COMPUTE TOT_SALES/I10 = SALES; AS 'Total,Sales'
BY  LOWEST CAR.ORIGIN.COUNTRY AS 'Country'
PRINT 
     CAR.CARREC.MODEL AS 'Model'
     CAR.BODY.SALES AS 'Sales'
     COMPUTE SALES_PCT/D8.1% = ( SALES / TOT_SALES ) * 100; AS 'Sales %'
     COMPUTE RUN_TOT/I10 = IF COUNTRY NE LAST COUNTRY THEN SALES ELSE RUN_TOT + SALES; AS 'Running,Total'
BY  LOWEST CAR.ORIGIN.COUNTRY AS 'Country'
BY  LOWEST CAR.COMP.CAR AS 'Car'
     
ON CAR.ORIGIN.COUNTRY SUBFOOT
" "
ON TABLE SET PAGE-NUM NOLEAD 
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     INCLUDE = endeflt,
$
ENDSTYLE
END



Perhaps there's something else in your report that maybe causing the issue you describe.

Could you work an example using the CAR table illustrating what your problem is?



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
 
Posts: 1533 | Registered: August 12, 2005Report This Post
Virtuoso
posted Hide Post
With a few minor changes, the report can actually be displayed in EXL2K FORMULA:

TABLE FILE CAR
SUM 
     COMPUTE TOT_SALES/I10 = SALES; NOPRINT
BY  LOWEST CAR.ORIGIN.COUNTRY AS 'Country'
PRINT 
     CAR.CARREC.MODEL AS 'Model'
     CAR.BODY.SALES AS 'Sales'
     COMPUTE SALES_PCT/D8.1% = IF TOT_SALES EQ 0 THEN 0 ELSE ( SALES / TOT_SALES ) * 100; AS 'Sales %'
     COMPUTE RUN_TOT/I10 = IF COUNTRY NE LAST COUNTRY THEN SALES ELSE RUN_TOT + SALES; AS 'Running,Total'
BY  LOWEST CAR.ORIGIN.COUNTRY NOPRINT
BY  TOT_SALES AS 'Total,Sales'
BY  LOWEST CAR.COMP.CAR AS 'Car'
     
ON CAR.ORIGIN.COUNTRY SUBFOOT
" "
ON TABLE SET PAGE-NUM NOLEAD 
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K FORMULA
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     INCLUDE = endeflt,
$
ENDSTYLE
END



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
 
Posts: 1533 | Registered: August 12, 2005Report This Post
Platinum Member
posted Hide Post
Thanks - I will let you know the results.


WebFOCUS & ReportCaster 8.1.05, 7.7.03 - AIX/LINUX, FOCUS 7.6.13 MVS, Output PDF, XLS-XLSX, DOCX and HTML
 
Posts: 146 | Location: Atlanta, GA | Registered: May 31, 2007Report 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: 7.7.03, LAST & Exl2K - Need a WAR

Copyright © 1996-2020 Information Builders