Focal Point
[solved] path to client stylesheet from RS

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

July 18, 2019, 01:19 PM
RRKen
[solved] path to client stylesheet from RS
Is it possible to reference a stylesheet on the client from a fex on the reporting server? If so, what is the path? I tried this:
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/combine_templates/ENOrange_DarkComp.sty,$

but it errors

Thanks,
Ken

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


8.2.03 AIX Client Windows Tomcat
DB2, Terradata, SQL, Oracle
July 18, 2019, 03:54 PM
Jagan
Hello Ken,

You can just give the file name as is in all lower case when including it on the procedure from Reporting Server.

TABLE FILE CAR
PRINT CAR
ON TABLE SET STYLE *
INCLUDE = enorange_darkcomp,$
ENDSTYLE
END

All the default style sheets available on the client are also available on the reporting server located at srv\home\etc\ directory.

Hope this helps.


WebFOCUS 77x, WebFOCUS 8x
July 18, 2019, 04:48 PM
Waz
Only if the Client and Reporting server are on the same server or files system is accessible.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

July 19, 2019, 07:33 AM
MartinY
And the syntax vary between a call from RS or Client (below is having RS & Client on the same server)

RS
TABLE FILE CAR
SUM RETAIL_COST
BY COUNTRY
ON TABLE SET STYLE *
     INCLUDE = warm,
$
ENDSTYLE
END


Client
TABLE FILE CAR
SUM RETAIL_COST
BY COUNTRY
ON TABLE SET STYLE *
     INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
ENDSTYLE
END



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
July 19, 2019, 09:50 AM
RRKen
quote:
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty


The client is on Windows server and the RS in on an AIX box. I have approot shared to the Windows box so that content is available.
I'm able to get it to work by putting the .sty on the AIX box in lower case and using this:
INCLUDE = enorange_darkcomp.sty, $

Thanks for the ideas


8.2.03 AIX Client Windows Tomcat
DB2, Terradata, SQL, Oracle