Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Apostrophe Error

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Apostrophe Error
 Login/Join
 
Member
posted
I have the following code:

... IF TABLE.COUNTRY EQ ''COTE D'IVOIRE'' THEN 'AFRICA' ELSE ...

I use two single apostrophe (') instead of quotation marks (") and I get the error when attempting to define:
DEFINE| Please check for single quotes mismatch

How can I fix this?

Thanks!
Aimee

This message has been edited. Last edited by: Kerry,


7702, WinXP
Excel, HTML
 
Posts: 14 | Registered: December 21, 2010Report This Post
Platinum Member
posted Hide Post
Try this:

-SET &COUNTRY = 'COTE D' || '''' || 'IVOIRE';

... IF TABLE.COUNTRY EQ '&COUNTRY.EVAL' THEN 'AFRICA' ELSE ...

Those are 4 single apostrophes between the concatenation symbols.


WebFOCUS 7.6.11, Linux, HTML, PDF, AHTML, EXCEL
 
Posts: 100 | Registered: September 15, 2010Report This Post
Expert
posted Hide Post
As JBK has indicated two single quotes in a string are evaluated as a single one.

There fore you can test as follows.
... IF TABLE.COUNTRY EQ 'COTE D''IVOIRE' THEN 'AFRICA' ELSE ...


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Member
posted Hide Post
I decided to change the Country to a DECODE instead of using IF THEN ELSE to link it to a Region.

I put:
-SET &COUNTRY = 'COTE D' || '''' || 'IVOIRE';
.
.
.
DECODE USF_AA_ADDRESS.USF_AA_ADDRESS.COUNTRY(
.
.
.
COMOROS Africa
'COTE D' || '''' || 'IVOIRE' Africa
EGYPT Africa

However, Cote D'ivoire is showing up in a null Region instead of Africa.

How do I make it read the decode to file the country under "Africa"?


7702, WinXP
Excel, HTML
 
Posts: 14 | Registered: December 21, 2010Report This Post
Master
posted Hide Post
Does Cote D'Ivoire show up on your null list formatted exactly correctly? Is your input field formatted exactly the same? If they aren't, you will have a problem with the DECODE. Cote D'Ivoire is a kind of difficult case with the two words, intemediate apostrophe, etc.

You could try and simplify by saying something like:

COUNTRY = IF COUNTRY EQ 'COTE D' || '''' || 'IVOIRE' THEN 'COTEDIVOIRE' ELSE COUNTRY;

and then use COTEDIVOIRE in your decode.


WebFOCUS 7.7.05 Windows, Linux, DB2, IBM Lotus Notes, Firebird, Lotus Symphony/OpenOffice. Outputs PDF, Excel 2007 (for OpenOffice integration), WP
 
Posts: 674 | Location: Guelph, Ontario, Canada ... In Focus since 1985 | Registered: September 28, 2010Report This Post
<JG>
posted
You could just try coding it correctly

 TABLE FILE CAR
PRINT 
COMPUTE NCOUNTRY/A20= IF COUNTRY EQ 'FRANCE' THEN 'COTE D' || '''' || 'IVOIRE' ELSE COUNTRY;
COMPUTE CONTINENT/A10= DECODE NCOUNTRY('COTE D''IVOIRE' 'Africa'
                                       'JAPAN' 'Asia' ELSE 'Europe');
END 


The escape for a single quote is a single quote

 NCOUNTRY      CONTINENT 
        ENGLAND       Europe 
        JAPAN         Asia 
        ITALY         Europe 
        W GERMANY     Europe 
        COTE D'IVOIRE Africa 
 
 
Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Apostrophe Error

Copyright © 1996-2020 Information Builders