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 any way to paramartize the IBFS: reference for includes (et al)... The IBFS reference seems to be the requirement for referencing an object in the contents area (vs on the data server)
When I try to parametrize it, like this: -SET &LOC = 'TEST'; -INCLUDE IBFS:/WFC/Repository/&LOC/fs_properties.fex
I get this error: Names cannot contain any of the following characteres: Space&*()|:;",?/"
The challenge is that as we promote code from one diretory to another (in the contents area)..we have to remember to go in and physically change that all the directory reference (in this case TEST) for the -INCLUDES/HTMLFORMS etc.
I know I would then have to figure out a way to set the &LOC so it knows from where the code is running..but I believe the SE said that is possible in the profile execution..so I would have a value knowing the relative run area.
Any insights would be greatly appreciated.
thanks in advance WmThis message has been edited. Last edited by: W Kassebaum,
WebFOCUS 8 Windows, All Outputs
Posts: 30 | Location: Living in Charlotte, working all over | Registered: July 13, 2015
I tried to run this... ~~~~~~~~~~~~~~~~~~~ -SET &LOC = 'TEST'; -SET &IBFS='-INCLUDE IBFS:/WFC/Repository/' | &LOC.EVAL | '/fs_properties.fex'; &IBFS.EVAL
-TYPE &DATA_LOCATION.EVAL ~~~~~~~~~~~~~~~~~~~ (&DATA_LOCATION is in fs_properties.fex)
a. it stopped throwing the error (goood) b. it did not do the include for fs_properties.fex (bad) so, at run time, it prompted for DATA_LOCATION.
I don't think that technique (which was a very good idea and something I had not thought of) does not appear to work in the contents area. I'm sure the equivalent would work on the reporting server.
thanks for the thoughs.
wm
WebFOCUS 8 Windows, All Outputs
Posts: 30 | Location: Living in Charlotte, working all over | Registered: July 13, 2015
As I understand it, with the fex's stored in a DB, there is a preprocessor that collects all the fex's and passes them to the reporting server for execution. This process does not support variables.