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 run a report breaking down pc's by the departments they are in. This is determined based upon their IP. The IP field is considered text. I have attempted to change this field to numeric in the master data file. My define is DEPARTMENT/A10= IF IP GE '10.100.1.31' OR LE '10.100.1.254' THEN 'PFM' ELSE IF IP GE '10.100.9.31' OR LE '10.100.9.254' THEN 'DATA' ELSE 'OTHER';
If I do it as listed above I get the error COMPARISON BETWEEN COMPUTATIONAL AND ALPHA VALUES IS NOT ALLOWED
If I take off the quotes around the IP address I get an error FIELDNAME OR COMPUTATIONAL ELEMENT NOT RECOGNIZED: 10.100.1.31
Am I going to have to do a computation into binary number or something in order to do this define?
I'm using the Edit function and just pulling out the 3rd octect, since that's what I need. Unfortunately not all the IP's are exactly the same so my edit that says IPADD/I2= EDIT(IP, '$$$$$$$99$$$$') works fine for an IP that is 10.100.25.111 but doesn't work for one that is 10.1.1.154 any idea how to deal with that?