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.
I'm trying to create a clickable entry on a WebFOCUS report that opens a Windows Explorer window that lists all the files in a given folder. I have tried this SYSTEM command: -SET &RETCODE = SYSTEM(39, '\\lvhwebappdev\pmf\NetworkGoals\NG1.bat', 'D4')
The .bat file has this command in it: START \\lvhwebappdev\pmf\NetworkGoals\SupportingDocumentation
I get a WebFOCUS window without an error message but nothing happens. Here is the last line of the WebFOCUS info: D:\ibi\srv77\wfs\edatemp\ts000194>START \\lvhwebappdev\pmf\NetworkGoals\Support- ingDocumentationThis message has been edited. Last edited by: Larry S,
That command would run on the WebFOCUS server. I don't think that's what you want?
If you're trying to open a Windows Explorer at the client side; I doubt that's possible - for security reasons web browsers tend not to allow such things.
Perhaps you could get this done by providing a link to an FTP directory on your server to your clients?
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
I guess it doesn't matter how it's displayed, but I need to show a list of documents where the user can choose any of the documents to open. I tried creating an HTML script, but that created a button that, when clicked, opened Windows Explorer listing the files in the given folder. I wanted to eliminate the button and go directly from the Focexec to the list of documents.
I guess it doesn't matter how it's displayed, but I need to show a list of documents where the user can choose any of the documents to open.
Here is a model of what we did, when we had a similar requirement..
1. Create a batch job that invokes an FTP command. The FTP command creates a filename listing of the files stored on a share folder. (One set of users maintained this share folder on an ongoing basis.) You would define this folder as an ftp site to your server. (The batch job can run periodically, from your enterprise scheduler.)
Batch Job:
FTP -v -i -s:ftpcmds.txt
ftpcmds.txt:
open localhost
ftpuser
testpw
dir
ls . listing.txt
disconnect
bye
listing.txt (given that there are two files in the folder):
Document1.doc
Document2.doc
2. Create the WF page, to allow document selection (or add code to existing page).