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.
I have an A10V field with dates that look like M-D-YYYY (1-15-1985). The year is always four characters but the month and date can either be one or two characters, so the length of the sting and the position of the dashes vary. The field is left justified.
I'd like to be able to change this to an MDYY format.
Is there a date function that I can use in a define statement to accomplish the conversion?This message has been edited. Last edited by: Kerry,
There may be a more direct way, but this seems to work.
DEFINE FILE CAR
ADATE/A10V = '1-15-1985' ;
M/I2 = EDIT(GETTOK(ADATE,10,1,'-',2,'A2')) ;
D/I2 = EDIT(GETTOK(ADATE,10,2,'-',2,'A2')) ;
A8DATE/A8MDYY = EDIT(M) | EDIT(D) | GETTOK(ADATE,10,3,'-',4,'A4') ;
END
TABLE FILE CAR
PRINT ADATE
M D
A8DATE
BY COUNTRY NOPRINT
WHERE RECORDLIMIT EQ 1
END
..and from this A8DMYY it is an easy step to a real smartdate. If you can you should try to find the perfect book about dates in webfocus. It gives you many many tricks and is worth all the 25 u$ I payed for it.