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. Moving forward, myibi is our community platform to learn, share, and collaborate. We have the same Focal Point forum categories in myibi, so you can continue to have all new conversations there. If you need access to myibi, contact us at myibi@ibi.com and provide your corporate email address, company, and name.
So I have a report header with a hyperlink. It works if my URL path and file name have no spaces. It fails where there is a space...as is the case below. How do I adjust the syntax to account for the spaces?
TYPE=TABHEADING, LINE=1, OBJECT=TEXT, ITEM=10, SIZE=8, COLOR=RGB(255 102 0), TARGET='_blank', URL=X:\DEPT\my reports\Dept Head List.PDF,This message has been edited. Last edited by: FP Mod Chuck,
0 ERROR AT OR NEAR LINE 1 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC001) THE NAME OF THE FILE OR THE WORD 'FILE' IS MISSING 0 ERROR AT OR NEAR LINE 13 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC324) THE PARAMETER TO BE SET IS NOT RECOGNIZED: RLSPACE (FOC3202) BAD VALUE IN STYLESHEET FILE AT LINE 144: URL=(URLTXT)
TABLE FILE CAR
PRINT
COMPUTE URLTXT/A150 = 'X:\Main\my reports\D&|H\DeptHeadlst.PDF';
BY MODEL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
URL=(URLTXT),
TARGET='_blank',
$
ENDSTYLE
END
I tried the SET method and get this error; note I must use: |, when I use: || it errors out altogether.
ERROR AT OR NEAR LINE 11 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC324) THE PARAMETER TO BE SET IS NOT RECOGNIZED: RLSPACE (FOC3202) BAD VALUE IN STYLESHEET FILE AT LINE 143: URL=(URLTXT2)
Using the compute now works but now I get the path value on every row printed...getting closer though...