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.
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
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
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.