Focal Point
[SOLVED] Style Sheet Path issues

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7737023196

May 21, 2019, 02:40 PM
Max Nevill
[SOLVED] Style Sheet Path issues
Hi All,

I'm having an issue with my production vs development server with style calls.

On my development server, I can call a style sheet with:

ON TABLE SET STYLE *
INCLUDE = endeflt,

but on my production server, it requires the path to be fully stated

INCLUDE = IBFS:/WFC/Repository/Shared_reports_files/Style_Sheets/endeflt.sty,

Here's an example of the error code:

?xml version="1.0" encoding="UTF-8" standalone="no" ?>
- ibfsrpc _jt="IBFSResponseObject" language="EN" localizeddesc="Cannot include resource specified endeflt" name="runItem" returncode="1020" returndesc="Cannot include resource specified endeflt" subreturncode="0" subsystem="" type="simple">
- ibfsparams size="4">
entry key="comp_pass" value="****" />
entry key="args" value="__null" />
entry key="path" value="IBFS:/WFC/Repository/Factbook/Factbook_Table07_Reg_by_Fall_Semester.fex" />
entry key="comp_user" value="__null" />
/ibfsparams>
- ibfserrorvalues size="1">
entry key="FEX_PATH" value="endeflt" />
/ibfserrorvalues>
/ibfsrpc>

Any thoughts?

This message has been edited. Last edited by: FP Mod Chuck,


WebFocus 8.104
Windows 7 Entreprise, SP1
May 22, 2019, 08:24 AM
MartinY
When ran from EDASERVE (Data server)
INCLUDE = endeflt,
will work

When ran from Domains, you need the full path such as :
INCLUDE = IBFS:/WFC/Repository/Shared_reports_files/Style_Sheets/endeflt.sty,



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
May 22, 2019, 01:17 PM
Max Nevill
MartinY, I see what you're saying. The development server is on the same server where the data is hosted, the production server is separate from that.


WebFocus 8.104
Windows 7 Entreprise, SP1
May 22, 2019, 02:48 PM
MartinY
quote:
Originally posted by Max Nevill:
MartinY, I see what you're saying. The development server is on the same server where the data is hosted, the production server is separate from that.

Regardless of the above sentence.

When EDASERVE (Data Server) & Client (Domains) installed on the same server.
The below does work when ran from EDASERVE but not from Domains
TABLE FILE CAR
SUM CAR.BODY.SALES
BY  CAR.ORIGIN.COUNTRY
BY  CAR.COMP.CAR
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     INCLUDE = endeflt.sty,
$
ENDSTYLE
END

The below does work either from EDASERVE or from the Domains
TABLE FILE CAR
SUM CAR.BODY.SALES
BY  CAR.ORIGIN.COUNTRY
BY  CAR.COMP.CAR
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES 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/endeflt.sty,
$
ENDSTYLE
END

If your issue is fixed, please update your first post then add [SOLVED] at the beginning of the subject/title.


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
May 23, 2019, 08:48 AM
Doug
Excellent explanation Martin.
May I suggest: "If your issue is fixed, please update your first post then add [SOLVED SHARING] at the beginning of the subject/title."
May 23, 2019, 09:42 AM
MartinY
quote:
Originally posted by Doug:
May I suggest: "If your issue is fixed, please update your first post then add [SOLVED SHARING] at the beginning of the subject/title."

Good One


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