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.
As far as I know, WF provides only CDN (continental decimal notation) where the decimal point is a comma and the separator is a period. If you want something more, use the FTOA function to create an alpha field and then EDIT.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
I don't think it is an error: there a many countries where the 1000-separator is a space. And in switzerland it is the apostrophe '. Even in calculators!!!
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Did you try to define your data in the MFD as a curreny, and the name of the currency. e.g. FIELDNAME=PRICE,ALIAS=PR, FORMAT=D9.2,CURR=country_name-from_list ,$
Search the documentation for how to find the list of currencies.(search is in upper right hand of this page)
you can then call it via a DEFINE or COMPUTE at any time.
for example
TABLE FILE CAR PRINT COMPUTE TVALUE/D20.2=SALES * DEALER_COST + 0.99; COMPUTE INDIAVAL/A27= INDIAVAL(TVALUE); AS 'Value,in,Rupees' BY COUNTRY IF SALES NE 0 ON TABLE SET STYLE * TYPE=DATA, COLUMN=INDIAVAL, JUSTIFY=RIGHT,$ END