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.
After the upgrade we encountered a problem with the use of the ‘MFD_PROFILE’ in a set of metadata. Anytime the file with the ‘MFD_PROFILE’ is accessed it will hang the system up. About the only way to stop it is to kill the process in the Task Manager on the server.
If I run the table file, it will hang up. If I remove the MFD_PROFILE, it will return results from the file. We are using this as a filter for security access. As mentioned, this is code that has been running perfectly in prior releases of WebFocus the last one being 8.09.
Thanks for anyone's help. JRThis message has been edited. Last edited by: johnh,
WebFocus Version 8.13, Windows 2007 Service Pack 2, HTML
Thanks for your response and the link for the manual. Adding the app folder doesn't make a difference. I have tried it with and without. In the manual, there was nothing noted (that I found) about changes to the way MFP_PROFILEs are handled beginning with version 8.13.
The only thing I found in the manual I wonder about is a caution about issuing a request against the file in the master file. I am doing a 'FILTER FILE' using the file in the master file. However, if this is a problem why did it work before?
JR
WebFocus Version 8.13, Windows 2007 Service Pack 2, HTML
dhagen...Thank you very much. This works perfectly.
It is obvious the 'FILTER FILE' is invoking the MFD_PROFILE in this version where it did not in previous versions causing it to hang in an endless loop. I don't know if this is a bug or feature change?
I found the following in the doc: ----- 'The MFD_PROFILE is executed for every TABLE, TABLEF, MATCH, GRAPH, CREATE, DEFINE, CHECK, ?F, and ?FF request against a Master File that contains the MFD_PROFILE attribute.' -----
I also read in a different link where the CHECK command was previously not invoked but that changed and I wonder if the same is true with the FILTER command.
At any rate (thanks to your help) I have a solution regardless if IBI fixes this or not.
JR
WebFocus Version 8.13, Windows 2007 Service Pack 2, HTML
One postscript to this. The change I implemented did keep the server from hanging but did not completely fix the problem. The change would only allow the MPD_PROFILE to be executed once during the session (as long as the double amper was set). However I need this to execute each time the table is referenced.
So, the only way I could figure out to do this was to let it run every other time it was executed. I know there is a better way do do it but the following works:
------
-DEFAULT &&LOOPCNT = 0; -SET &&LOOPCNT = &&LOOPCNT + 1; -SET &&LOOPCNT = IF EDIT(&&LOOPCNT, '$9') EQ ' ' THEN '0' | &&LOOPCNT ELSE &&LOOPCNT; -SET &&LOOPCNT = IF EDIT(&&LOOPCNT, '$$9') EQ ' ' THEN '0' | &&LOOPCNT ELSE &&LOOPCNT; -SET &&LOOPCNT = IF EDIT(&&LOOPCNT, '$$$9') EQ ' ' THEN '0' | &&LOOPCNT ELSE &&LOOPCNT; -SET &&LOOPCNT = IF EDIT(&&LOOPCNT, '$$$$9') EQ ' ' THEN '0' | &&LOOPCNT ELSE &&LOOPCNT; -SET &&LOOPCNT = IF EDIT(&&LOOPCNT, '$$$$$9') EQ ' ' THEN '0' | &&LOOPCNT ELSE &&LOOPCNT;
-IF EDIT(&&LOOPCNT, '$$$$$9') EQ '0' OR '2' OR '4' OR '6' OR '8' GOTO :SKIP_FIL;
....original code.....
:SKIP_FIL
------
Thanks, jr
WebFocus Version 8.13, Windows 2007 Service Pack 2, HTML
Hi, sorry I'm semi-retired so don't get on as frequently as I probably should. This has worked for other customers . At the very END of the procedure , right before you get out, -SET &&LOOPCNT = 1; -IF &&LOOPCNT GT 1
Then the logic works -IF &&LOOPCNT GT 1 GOTO :SKIP_FIL; ... some code including -SET &&LOOPCNT = 2; -:SKIP_FIL -SET &&LOOPCNT = 1;
I have opened a project for programming to see if they can do this "automagically" .
Again, my apologies for the delay
WEFOCUS - All releases starting at 4.3.6 MF FOCUS -- All releases starting at 3.8.68 OS/Platfor _ Predominately Z/OS, but all others as swell Expected Output Format -- *
Posts: 60 | Location: 2 penn | Registered: May 22, 2003