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.
We are using WF 5.23 I would like to define a field to have the value of <td width="20%"> but WF doesn't like the left arrow symbol. Does anyone have any ideas on how to get around this. My goal is -- I need to define html table statements within WF code to feed into html using !IBI.FIL.name
Posts: 69 | Location: OH | Registered: November 09, 2004
DEFINEing or COMPUTEing an alpha field with the contents of '<td width="20%">' will work, there's nothing there to confuse WF. What your problem might be is that this field is not rendered by the web browser as you expected it to. Each and every element in a WebFOCUS report will be within a <td> </td> pair, including your <td width="20%">. It will be generated as <td><td width="20%"></td> which will not render as you expect it.
Perhaps if you tell us what you're trying to do we can be of further help.
DEFINE FILE HOLD QQ/A1 = '"'; OPT1/A80 = '<option value='||QQ||EC_CSTRING||QQ ; OPT2/A55 = '>'||LOCATION; OPT3/A160 = OPT1||OPT2||'</OPTION>'; END TABLE FILE HOLD PRINT OPT3 ON TABLE HOLD AS SYSSAVE FORMAT ALPHA END
Posts: 189 | Location: pgh pa | Registered: October 06, 2004