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.
Hi, I need to display mixed currency symbols in a column. I converted the amount to alpha value and appending the currency symbol based on the currency convention column. For example: I have currency convention as GBP, USD, AUD etc., and a column for amount. Based on the currency convention, I have a define as if GBP then display pound , if AUD then display AUD else display $'. but pound symbol comes up as ú instead of £. I am using POUND/A1=HEXBYT(163, 'A1'); for pound sign. Am I doing something wrong. I tried in HTML and Excel and both of them are giving me wrong symbol. Any advice please. Thanks.This message has been edited. Last edited by: Kerry,
I haven't tried this, but it might provide another approach that doesn't require converting your amounts to alpha format. First set the default currency to AUD. Then use the currency options to format your amount field for the other currencies. The format should default to AUD if you don't specify a currency option in the format.
SET CURRSYMB = 'AUD'
-*
DEFINE FILE xxx
CURRFMT/A10 = IF (CURRENCY EQ 'DOLLAR') THEN 'D12.2!D' ELSE
IF (CURRENCY EQ 'EURO') THEN 'D12.2!E' ELSE
IF (CURRENCY EQ 'GBP') THEN 'D12.2!L' ELSE
IF (CURRENCY EQ 'YEN') THEN 'D12.2!Y' ELSE 'D12.2';
END
-*
TABLE FILE xxx
PRINT AMOUNT/CURRFMT
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Thank you for your response Dan. But, this would not work for me because if the amount is AUD (Australian Dollar), I need to have AUD at the end. For example: for dollar, $1234 for GBP, £1234 for AUD, 1234 AUD.