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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
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.