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.
The WF8 syntax, IBFS:/xxx/is used to find stuff in WF8 WF7: -INCLUDE THISFEX WF8: -INCLUDE IBFS:/WFC/Repository/webdevel/Doug/BaseFolder.thisfex.fex Capitalization counts in Linux... IBFS: Information Builders File System... WFC: WebFOCUS Content (folder)...
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
David, as usual, is right on the money and if you right click and choose properties on one of the broken images, you will see that the Protocol of IBFS: etc. is unknown.
Instead of IBFS:/EDA/EDASERVE/APPPATH/webdevel/image_x.gif you could use /approot/webdevel/image_x.gif
TThis message has been edited. Last edited by: Tony A,
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Get rid of the "ibfs:/EDA/EDASERVE/" prefix of your img src attribute. IBFS: is not a valid protocol for a web address - it only has meaning within WebFOCUS.
Type the following into the browser address (replacing the server etc. as necessary) and see if you get an image.
Been using it since 8.0.01 - tested with 8.1.04 too.
One thing to note however, if you try to do this InfoAssist it will show you the HTML code rather than the image. This is because InfoAssist decides to add ON TABLE SET HTMLENCODE ON to all procedures which disables HTML code in your report. Currently this can't be turned off at the user lever.
Instead to resolve this issue you have two options:
1) Manually edit the code (right click and choose Edit With... Text Editor) and change change the line
ON TABLE SET HTMLENCODE ON
to read
ON TABLE SET HTMLENCODE OFF
2) Turn off HTML Encode for all reports
As administrator, click on "Administration" then "Administration Console". then in the new window Expand "Utilities" and Click "InfoAssist Properties" Down near the bottom of the "Tool Options" section uncheck "Encode HTML" and click the "Save" button.
Note: If you don't choose the 2nd option then everytime you edit a report in IA it will default back to ON TABLE SET HTMLENCODE ON
Hope this helps
Stu
WebFOCUS 8.2.03 (8.2.06 in testing)
Posts: 253 | Location: Melbourne, Australia | Registered: February 07, 2007
SET PAGE = NOPAGE
SET BASEURL=http://this.that.net
APP PATH IBISAMP
TABLE FILE CAR
BY COUNTRY AS '' SUM DEALER_COST AS ''
COMPUTE Mark/A54=IF RETAIL_COST GE 8000
THEN '<img src="/approot/webfocusdevelopement/ng.gif"></img>'
ELSE '<img src="/approot/webfocusdevelopement/ok.gif"></img>'; AS ''
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF, BORDER=LIGHT, FONT=ARIAL, SIZE=10, COLOR=NAVY,$
ENDSTYLE
END
This message has been edited. Last edited by: Doug,
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
would have worked if I used the web apps folder name.
The 8080, which showed up in the properties of the broken link, got in the way.
"webdevel" is the name of the app folder and "webfocusdevelopement" is the name of the web applications folder. It's all in the name, and it's working like I thought it should.
So, thank you Tony and thanks to all the others...
~ Doug
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005