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     [SOLVED] DECODE special characters

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] DECODE special characters
 Login/Join
 
Member
posted
Hello, I am trying to DECODE a variable that has values containing special characters:
 
VAR1/A20V = DECODE COLUMN1 ( 'VALUE1' '1VAL1'
                             'VÄLUE2' 'VÄL2'
                           ELSE 'XX');

the value2 gets decoded as 'XX'. Any ideas how to handle this?
Thanks !

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


WebFOCUS 767, Windows XP
Excel, HTML, PDF
 
Posts: 15 | Registered: March 11, 2009Report This Post
Expert
posted Hide Post
It probably has something to do with the code page used in WebFOCUS.

I have mine set "137 – Western European" or "137 – U.S. English" on the WebFOCUS Client. The client code page change can be made via the WebFOCUS Administrator Console
http://server-name:port/ibi_apps/console/webfocusconsole.jsp


I have the WebFOCUS Server set to "137 – U.S. English/Western Europe (Latin 1)". The server code page change can be made via the WebFOCUS Server Console
http://server-name:port/webconsole/webconsole


This fex:

TABLE FILE CAR
PRINT
COMPUTE COLUMN1/A10 =
IF COUNTRY EQ 'ENGLAND' THEN 'VALUE1' ELSE
IF COUNTRY EQ 'W GERMANY' THEN 'VÄLUE2' ELSE COUNTRY;

COMPUTE VAR1/A20V = DECODE COLUMN1(
'VALUE1' '1VAL1'
'VÄLUE2' 'VÄL2'
ELSE 'XX');
END
yields the correct results:
COLUMN1 VAR1 
VALUE1  1VAL1 
JAPAN   XX 
ITALY   XX 
VÄLUE2  VÄL2 
FRANCE  XX 


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
I am going to check with our admin team about the client and server code page settings. Meanwhile, I abandoned the DECODE and used a IF THEN ELSE construct with pattern matching (used LIKE 'text%') and it works in my situation because the occurences of a value was limited to 1 for each set of conditions in the IF.

Thanks!


WebFOCUS 767, Windows XP
Excel, HTML, PDF
 
Posts: 15 | Registered: March 11, 2009Report 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     [SOLVED] DECODE special characters

Copyright © 1996-2020 Information Builders