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.
thanks, I guess the issue I am having is that I need to update DATE1 which is a6ymd (master file) with DATELG/YYMD='19961001'; The modify does not seem to update
what would be the modify coding to update DATE1 which is A6YMD? I have tried: MODIFY FILE .. COMPUTE DATELG/YYMD=; ON MATCH COMPUTE DATE1= DATELG; ON MATCH CONTINUE ON MATCH UPDATE DATE1
MODIFY FILE .. COMPUTE DATELG/YYMD=; ON MATCH COMPUTE DATE1= DATELG; ON MATCH CONTINUE ON MATCH UPDATE DATE1
Is that your whole MODIFY ? You don't show a MATCH field-x before the ON MATCH And you have set DATELG to a null value and subsequently DATE1 to DATELG
It seems to me it should be something like:
MODIFY FILE WHATEVER
FIXFORM keyfield/xx datefield/xx etc.
MATCH keyfield
ON NOMATCH REJECT
ON MATCH UPDATE datefield
DATA ON datafile
END
I've assumed a fixed format data file but it could be a hold file, comma-delimited, etc.