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.
Is there a way to find out more information on a fex file that was deleted/moved by mistake? Is it possible to find out "who" deleted the fex, when, etc? Thanks
LuizThis message has been edited. Last edited by: Kerry,
Posts: 117 | Location: Denver | Registered: July 27, 2005
There is no method to track a deleted fex in an Application Folder. Perhaps there is some operation system command. If the fex was in MRE, you might have better luck. In my experience, the fex remains in the domain folder, flagged as deleted in the domain's html page.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
There is no method to track a deleted fex in an Application Folder. Perhaps there is some operation system command. If the fex was in MRE, you might have better luck. In my experience, the fex remains in the domain folder, flagged as deleted in the domain's html page.
Francis
Thanks Francis Luiz
Posts: 117 | Location: Denver | Registered: July 27, 2005
Luiz, I hope you're able to recover your missing FEXs using Francis or someone else's hints. In running across your post, it reminded me of a related process that I implemented during my recent upgrade cycle. I thought I'd share with everyone in case they wanted to implement some precautions into their environment.
I created a Windows batch file that zips (using Winzip Command Line edition) identified directories and places on a netshare.
backup.bat
@ECHO OFF
wzzip -ex -P -r -a indiv_code_backup.zip @backup_dir_list.lst 1>NUL
REM When %date% is used in a batch file it displays the date in the following format:
REM Sun 09/02/2007 this command breaks this date into the tokens:
REM "Sun" (%%d), "09" (%%e), "02" (%%f), and "2007" (%%g).
REM In this example using the date command, hope.txt would be renamed to 09-02-2007.txt
REM for /f "tokens=1-5 delims=/ " %%d in ("%date%") do rename "hope.txt" %%e-%%f-%%g.txt
for /f "tokens=1-5 delims=/ " %%d in ("%date%") do move /Y "indiv_code_backup.zip" \\netshare\indiv_backups\indiv_code_backup-%%g%%e%%f.zip
The 2 files are moved to the WebFocus server in a 'scripts' directory and scheduled via Window's Scheduled Tasks to run nightly at 1:30a. Something like this would be equally as easy with cron and gzip in linux/unix. Hope this helps someone!