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 was looking through the manual just now (yes, I admit it) and I stumbled across a Dialogue Manager Suffix command called QUOTEDSTRING. I am curious to know if anyone already knows about this suffix command. Basically it will add single quotes to a DM string variable appropriately. See page 5-35 in the Developing Reporting Applications manual v7.1
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003
As we have all our applications in multiple languages (German and French actually) all our textes are stored in a DB. These textes are used in TABLE output, in HTMLFORMs and in MAINTAIN forms. For TABLE and HTML we get it via Dialog Manager. As especially in French we have many apostrophes within the texts, we had to code them as two apostrophes. In TABLE and HTML this showed up as one apostrophe. But in Maintain this showed up as two Coding only one apostrophe in the texts and using .QUOTEDSTRING in the DM code preparing the variables for TABLE and HTMLFORM resolved this. So we have nice text presentation all over our applications
Roland
Prod: WF 7.1.5 Test: WF 7.6.4 Unix Sun Solaris HTML, PDF, EXL2K
Posts: 54 | Location: Switzerland | Registered: May 13, 2003
Another useful application of the post-fix .QUOTEDSTRING is in drill-downs that may potentially contain the value FOC_NONE. Since FOC_NONE lines of code, on their own are never placed on the stack for execution, the post-fix .QUOTEDSTRING, just like .EVAL lines of code will indeed be placed on the stack, so the line of code containing the value FOC_STACK will not be thrown away.
Originally posted by jamie: Another useful application of the post-fix .QUOTEDSTRING is in drill-downs that may potentially contain the value FOC_NONE. Since FOC_NONE lines of code, on their own are never placed on the stack for execution, the post-fix .QUOTEDSTRING, just like .EVAL lines of code will indeed be placed on the stack, so the line of code containing the value FOC_NONE will not be thrown away.