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 reading some text in using a -READ and the text is something like '>>:#7'
I then type out the code that was read and what it shows is: >>:#7
I'm quite sure this has to do with the greater than sign being a reserved html character, but I need it to read the greater than signs directly as I'm building a WHERE field1 CONTAINS '>' statement for later in the fex.
Does anyone know how I can read these more directly?
The variable you want to use in the WHERE statement should contain what exactly? Should it be 'greater-than greater-than:#7'?
It is possible that you're getting confused by what you see in the ECHO or TYPE, the html page is translating the symbols but the WHERE statement most likely should work.
If there are embedded ampersands in the variable, that's another story.
As it turns out I'm my own victim...I found what it was doing and resolved it. This program pulls in a flat file and if it contains some user entered data, then we remove that row. In this specific scenario, the user entered greater-than greater than :#7 and it was changing the symbol into the ampersand value, but as it turns out, it is doing the same on the flat file so it works just fine....My bad and my utmost apologies.