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.
We have a dtabase that holds a A50 field for some reason in that field sometimes it holds a value that looks like this 9,500.00 or in case of negative amount (15,765.45) Is there an easy way to convert this or is there only the hard way by removing the unwanted characters ")" and "," and replace the "(" by a minus sign.This message has been edited. Last edited by: FrankDutch,
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006
-* File alphalomgtonumber.fex
DEFINE FILE CAR
BEDRAG/A15=IF COUNTRY EQ 'ITALY' THEN '(25,345.76)' ELSE IF COUNTRY EQ 'ENGLAND' THEN '1,859,001.45' ELSE '9,765.33';
BEDRAG2/A15=STRREP (15,BEDRAG ,1,')',0,'',15,BEDRAG2);
BEDRAG3/A15=STRREP (15,BEDRAG2 ,1,'(',1,'-',15,BEDRAG2);
BEDRAG4/A15=STRREP (15,BEDRAG3 ,1,',',0,'',15,BEDRAG2);
BEDRAGV/D15.2=EDIT(BEDRAG4);
END
TABLE FILE CAR
PRINT BEDRAG
BEDRAG2
BEDRAG3
BEDRAG4
BEDRAGV
BY COUNTRY
ON TABLE COLUMN-TOTAL
END
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006