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] Excel Output Issues

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Excel Output Issues
 Login/Join
 
Gold member
posted
I'm having difficulties getting existing fex's to output with XLSX type. I get this error message from Excel

quote:
Excel cannot open the file 'zcbab.xlsx' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file.


I press "ok" and Excel launches, but no file is opened.

We are on WebFOCUS 8; I'm on Windows 10 and Microsoft Office 2016. However, some people on Windows 8 have problems, some do not. I've tried changing the default program for anything that starts with .x to open with Excel.

If I create a brand new fex outputting to XLSX it opens successfully. I thought maybe Excel didn't like something in the formatting section (and we've had this happen for a handful of older fexes outputting to XLSX), but I've commented out all the formatting stuff, and it still fails. Any ideas?

This message has been edited. Last edited by: Kevin Patterson,


Kevin Patterson
Appalachian State University
WebFOCUS 7.7.03
Windows, All Outputs
 
Posts: 57 | Registered: February 29, 2012Report This Post
Platinum Member
posted Hide Post
Kevin ,
Please check Java service is active on Server .

I also faced same issue with .XLSX while output comes in EXL2K .


WF Production :- WF:8.0.0.4, 8.1.05 App-studio/Developer Studio(8.1.x) ,
8.2.0.1M , 8.2.0.2 (App-Studio8.2.x),
InfoAssist/+, InfoDiscovery
Output format:-AHTML, PDF, Excel, HTML
Platform:-Windows 7, 8,10
 
Posts: 186 | Location: Infobuild India | Registered: August 28, 2015Report This Post
Virtuoso
posted Hide Post
Can you provide an example of the code that's not working? Also, did you start getting this error on the existing reports after a change in OS, WebFOCUS upgrade? What changed to cause working reports to trigger this error?

Also, double check to see if you have

SET IBIF_excelservurl=''

In your profile or the report.

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


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
Gold member
posted Hide Post
Thanks for the responses. My administrator tells me that Java service is active on the reporting server and on the client box.

I've added SET IBIF_excelservurl='' as well. But I might have it in the wrong place. This is not a car file example but it's an example of what is giving me this error:

quote:
-* HTML Tool
-* Created by Report Assistant
-* FF Line do not change this line! Field Name
-* FF Line do not change this line! Alias
-* FF Line do not change this line! Format
-* FF Line do not change this line! Segment
-* FF Line do not change this line! displayTree=0
-* ***************************************************************************************************************************************************
-* Author - Rick Presnell
-* Replaces a previous version "Tim Burwell download" which only pulled ORG 2 - Academic Affairs, from ASU_OPERATING_LEDGER
-* Also replaces next version which replaced "Tim Burwell download" to allow ALL ORGs for Provost Dr. Kruger which was named (continue to next line)
-* (continued...) "Academic Affairs -Chart A - All ORGS" which read ASU_OPERATING_LEDGER
-* Had to replace because fields used in view would get updated retroactively for some COA changes.
-* New view, ASU_OPERATING_LEDGER_ORIG, contains fields that contain original values
-* The reason most of the column names are renamed using "AS", is that Tim Burwell has a rather extensive MS-Access/Excel application
-* that has queries, etc. which use the former column names. Renaming the new column names should prevent him from having to change
-* anything on his side.
-* ***************************************************************************************************************************************************
-*

-*---- code used to capture usage ---------------------
-SET &fexname = 'FinnaceODSORIGView-ChartA-AllOrgs (under Available Budget)';
-MRNOEDIT BEGIN
-INCLUDE baseapp/newusagetrack.fex
-MRNOEDIT END
-*-----------------------------------------------------

SET IBIF_excelservurl=''

DEFINE FILE ASU_OPERATING_LEDGER_ORIG ADD
source/A6=
EDIT (ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FUND,
'9$$$$$');
source1/A5=
IF source EQ '1'
THEN 'STATE'
ELSE
'TRUST';
samt/D18.2=
IF ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE EQ '50'
THEN ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_YEAR_TO_DATE_ACTIVITY * (-1.00)
ELSE
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_YEAR_TO_DATE_ACTIVITY;
inttype/A20=
IF ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE EQ '50'
THEN
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE | ' ' | 'Revenue'
ELSE
IF ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE EQ '60'
THEN
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE | ' ' | 'Labor'
ELSE
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE | ' ' | 'Expense';
neworg/A45=ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_LEVEL_3 | ' ' | ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_DESC_3;
newfund/A45=ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FUND | ' ' | ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_FUND_DESC_5;
newacct/A45=ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ACCOUNT | ' ' | ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_DESC_4;
Difference/D12.2=ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_ACCUMULATED_BUDGET - samt;
sbud/D18.2=
IF ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE EQ '50'
THEN ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_ACCUMULATED_BUDGET * (-1.00)
ELSE
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_ACCUMULATED_BUDGET;
END
TABLE FILE ASU_OPERATING_LEDGER_ORIG
PRINT
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ACCOUNT AS 'ACCOUNT'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FISCAL_PERIOD AS 'FISCAL_PERIOD'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_DESC_3 AS 'ORGANIZATION_DESC_3'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_LEVEL_3 AS 'ORGANIZATION_LEVEL_3'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_LEVEL_5 AS 'ORGANIZATION_LEVEL_5'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_DESC_5 AS 'ORGANIZATION_DESC_5'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_INTERNAL_ACCOUNT_TYPE AS 'INTERNAL_ACCOUNT_TYPE'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FUND AS 'FUND'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_LEVEL_2 AS 'ORGANIZATION_LEVEL_2'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_TYPE_LEVEL_2 AS 'ACCOUNT_TYPE_LEVEL_2'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_TYPE_DESC_2 AS 'ACCOUNT_TYPE_DESC_2'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_DESC_4 AS 'ACCOUNT_DESC'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_FUND_DESC_5 AS 'FUND_DESC'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ORGANIZATION_DESC_2 AS 'ORGANIZATION_DESC_2'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_YEAR_TO_DATE_ACTIVITY AS 'SUM_YEAR_TO_DATE_ACTIVITY'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.source1
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_PROGRAM_LEVEL_3 AS 'PROGRAM'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_PROGRAM_DESC_3 AS 'PROGRAM_DESC'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.SUM_ACCUMULATED_BUDGET AS 'BUDGET'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.samt
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.inttype
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.neworg
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.newfund
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.newacct
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.Difference
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_LEVEL_3 AS 'ACCOUNT_LEVEL_3'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_DESC_3 AS 'ACCOUNT_DESC_3'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_POOL AS 'ACCOUNT_POOL'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_ACCOUNT_POOL_DESC AS 'ACCOUNT_POOL_DESC'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FISCAL_YEAR AS 'FISCAL_YEAR'
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.sbud
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_FUND_LEVEL_4
ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.ORIG_FUND_DESC_4
WHERE ( ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.CHART_OF_ACCOUNTS EQ 'A' ) AND ( ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FISCAL_PERIOD EQ '&FISCAL_PERIOD.Enter 2 digit period number, YTD use 14.' ) AND ( ASU_OPERATING_LEDGER_ORIG.ASU_OPERATING_LEDGER_ORIG.FISCAL_YEAR EQ '&FISCAL_YEAR.Enter 4 digit fiscal year.' );
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT XLSX
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=REPORT,
GRAPHCOLOR='GREEN',
$
TYPE=REPORT,
OBJECT=MENU,
COLOR='WHITE',
HOVER-COLOR=RGB(66 70 73),
BACKCOLOR=RGB(102 102 102),
HOVER-BACKCOLOR=RGB(218 225 232),
BORDER-COLOR='WHITE',
$
TYPE=REPORT,
OBJECT=STATUS-AREA,
COLOR='WHITE',
BACKCOLOR=RGB(102 102 102),
$
TYPE=REPORT,
OBJECT=CURRENT-ROW,
HOVER-BACKCOLOR=RGB(218 225 232),
BACKCOLOR=RGB(200 200 200),
$
TYPE=REPORT,
OBJECT=CALC-AREA,
COLOR='WHITE',
BACKCOLOR=RGB(102 102 102),
$
TYPE=REPORT,
COLUMN=N33,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N32,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N9,
SQUEEZE=1.930556,
$
TYPE=REPORT,
COLUMN=N10,
SQUEEZE=2.000000,
$
TYPE=REPORT,
COLUMN=N11,
SQUEEZE=2.527778,
$
TYPE=REPORT,
COLUMN=N12,
SQUEEZE=3.277778,
$
TYPE=REPORT,
COLUMN=N13,
SQUEEZE=2.180556,
$
TYPE=REPORT,
COLUMN=N14,
SQUEEZE=2.638889,
$
TYPE=REPORT,
COLUMN=N17,
SQUEEZE=1.430556,
$
TYPE=REPORT,
COLUMN=N18,
SQUEEZE=4.152778,
$
TYPE=REPORT,
COLUMN=N27,
SQUEEZE=2.875000,
$
TYPE=REPORT,
COLUMN=N28,
SQUEEZE=2.055556,
$
TYPE=REPORT,
COLUMN=N29,
SQUEEZE=3.263889,
$
TYPE=REPORT,
COLUMN=N30,
SQUEEZE=1.375000,
$
TYPE=REPORT,
COLUMN=N126,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N125,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N124,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N123,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N122,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N121,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N120,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N119,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N118,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N117,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N116,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N115,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N114,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N113,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N112,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N111,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N110,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N109,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N108,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N107,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N106,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N105,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N104,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N103,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N102,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N101,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N100,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N99,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N98,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N97,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N96,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N95,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N94,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N93,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N92,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N91,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N90,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N89,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N88,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N87,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N86,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N85,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N84,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N83,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N82,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N81,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N80,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N79,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N78,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N77,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N76,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N75,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N74,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N73,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N72,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N71,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N70,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N69,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N68,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N67,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N66,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N65,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N64,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N63,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N62,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N61,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N60,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N59,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N58,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N57,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N56,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N55,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N54,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N53,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N52,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N51,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N50,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N49,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N48,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N47,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N46,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N45,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N44,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N43,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N42,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N41,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N40,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N39,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N38,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N37,
WRAP=6.000000,
$
TYPE=REPORT,
COLUMN=N8,
SQUEEZE=1.291667,
$
TYPE=REPORT,
COLUMN=N7,
SQUEEZE=1.680556,
$
TYPE=REPORT,
COLUMN=N6,
SQUEEZE=3.166667,
$
TYPE=REPORT,
COLUMN=N5,
SQUEEZE=1.666667,
$
TYPE=REPORT,
COLUMN=N4,
SQUEEZE=1.680556,
$
TYPE=REPORT,
COLUMN=N3,
SQUEEZE=2.805556,
$
TYPE=REPORT,
COLUMN=N2,
SQUEEZE=1.402778,
$
TYPE=REPORT,
COLUMN=N1,
SQUEEZE=1.180556,
$
ENDSTYLE
END


Kevin Patterson
Appalachian State University
WebFOCUS 7.7.03
Windows, All Outputs
 
Posts: 57 | Registered: February 29, 2012Report This Post
Platinum Member
posted Hide Post
quote:
SET IBIF_excelservurl=''


HI kevin ,
This setting need to be done in administration console , if you are doing at report level kindly change this to
quote:
SET EXCELSERVURL = ''


WF Production :- WF:8.0.0.4, 8.1.05 App-studio/Developer Studio(8.1.x) ,
8.2.0.1M , 8.2.0.2 (App-Studio8.2.x),
InfoAssist/+, InfoDiscovery
Output format:-AHTML, PDF, Excel, HTML
Platform:-Windows 7, 8,10
 
Posts: 186 | Location: Infobuild India | Registered: August 28, 2015Report This Post
Gold member
posted Hide Post
Big Grin That worked... setting SET EXCELSERVURL = '' in the fex itself. I'll try having our administrator set that in the server so we don't have to put it in each report. Thank you Chaudhary, and BabakNYC!


Kevin Patterson
Appalachian State University
WebFOCUS 7.7.03
Windows, All Outputs
 
Posts: 57 | Registered: February 29, 2012Report This Post
Platinum Member
posted Hide Post
Cool


WF Production :- WF:8.0.0.4, 8.1.05 App-studio/Developer Studio(8.1.x) ,
8.2.0.1M , 8.2.0.2 (App-Studio8.2.x),
InfoAssist/+, InfoDiscovery
Output format:-AHTML, PDF, Excel, HTML
Platform:-Windows 7, 8,10
 
Posts: 186 | Location: Infobuild India | Registered: August 28, 2015Report This Post
Expert
posted Hide Post
Why am I getting the following result:
 *** &EXCELSERVURL: SET EXCELSERVURL=http://biwfprod:8080/ibi_apps ***
 (FOC324) THE PARAMETER TO BE SET IS NOT RECOGNIZED: IBIF_EXCELSERVURL
 *** &EXCELSERVURL: SET EXCELSERVURL=http://biwfprod:8080/ibi_apps ***

From the following code
-TYPE *** &|EXCELSERVURL: &EXCELSERVURL ***
SET IBIF_EXCELSERVURL=''
-RUN
-TYPE *** &|EXCELSERVURL: &EXCELSERVURL ***
-EXIT




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Virtuoso
posted Hide Post
Doug,

The parameter should not be
SET EXCELSERVURL = ''

Without "IBIF_"


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, 2013Report 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] Excel Output Issues

Copyright © 1996-2020 Information Builders