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.
First of all, the filedef as you've coded it has a syntax error. There should be a space in front of the left parenthesis.
Secondly, if you are going to use the same master, then the field formats have to be the same, especially the actuals. You can adjust the formats as you read the sources by doing defines or overriding the format when you 'print' the field. Make sure to include ON TABLE SET HOLDLIST PRINTONLY in the request if you do the latter.
Should be TEMPRI.FTM (APPEND The space before the ( is important, but that might just have been a typo.
quote:
(FOC957) FORMAT MISMATCH FOR THE FIELD
Is actually much more relevant as it indicates that the format of the columns is different in the two sources.
What will happen in this case using (APPEND is that when you create the file all the data will be in the hold file but when you read the file the records with the wrong format will be dumped.
All columns, from both sources must be identical otherwise it will not work.
Easy way to see if rows are being dumped in the final output Is to use –SET &ECHO=ALL; set the output format to HTML and view source.
Additionally if you create your hold file as FORMAT ALPHA you can add !TYPE holdfilename.ftm The view source will allow you to see which column/s are at fault.