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.
Hi, I have created a schedule which executes a FEX procedure and creates a XFOCUS file at a destination folder. While executing the schedule i am facing the below error.
Task error: IBFSException 32027: local error
WF 8105 Windows 10This message has been edited. Last edited by: FP Mod Chuck,
Does this work if you run it outside of ReportCaster. I saw several cases on techsupport but they were related to bursting and using excel or xml as output none about creating a focus file.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
The FEX runs successfully by itself. I face the error only when i schedule it. Also I forgot to mention that the XFOCUS will be created in a shared network drive and not inside the webFOCUS repository. We do that using APP MAP
What'll happen if you schedule a fex that creates an XFOCUS using a sample table like WF_RETAIL? Will that work? If that works perhaps the problem has something to do with the size of the answer set or the data itself. Either way, I'm pretty sure you'll need to open a tech support case so IB folks can review your log files since this sounds very specific to your fex.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
The issue with my schedule was that the parameters passed from the schedule ran into infinite loop.correcting that solved the issue.Now,I am facing another issue where i couldn't access my foccache tables when i run the procedure through ReportCaster. Is there a way to fix this.
I just created this fex and it worked fine with ReportCaster. Try it on your environment.
TABLE FILE CAR SUM CAR.BODY.DEALER_COST CAR.BODY.RETAIL_COST BY CAR.ORIGIN.COUNTRY BY CAR.COMP.CAR ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET ASNAMES ON ON TABLE NOTOTAL ON TABLE HOLD AS foccache/carhold FORMAT ALPHA ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty, $ ENDSTYLE END TABLE FILE CARHOLD SUM CARHOLD.CARHOLD.DEALER_COST CARHOLD.CARHOLD.RETAIL_COST BY CARHOLD.CARHOLD.COUNTRY BY CARHOLD.CARHOLD.CAR ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET ASNAMES ON ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLEMBEDIMG ON ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty, $ ENDSTYLE END
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
Hi Chuck, When i schedule the fex which has hold to foccache and the next table request it works fine.what i am trying to do it the foccache tables are created using other procedure which gets created when the user logins into the portal and then the schedule runs with the procedure which uses the foccache tables.
foccache is based on a user session so each user gets his own set of files. ReportCaster starts its own session so the foccache you are hoping to use is not available. You may have to use a app folder which should work as long as the data is not user specific.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
One other thought, With ReportCaster you can have a pre-execution procedure. Maybe you can run your user specific fex there to create your foccache files there.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005
Thank you for the suggestion Chuck. I am creating the schedule with RESTful WebServices. I am not familiar with adding pre procedures to the schedules using RESTful WebServices. I am thinking of including labels in my fex procedure one for ReportCaster and one for normal execution. Under ReportCaster label i will include the fex files to create the foccache files.