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 would like to flatten out some health information using an across hold file but I can't seem to get it to work. Whenever I try to put the information into the hold file I get the message '(FOC070) ACROSS IS IMCOMPATIBLE WITH THE REQUEST' Below is the code that I am using and an example of the output I get. I know I can create hold files for each HLTH CODE but I thought there should be an easier and more efficient way of doing this.
TABLE FILE SYVSTAI
SUM
IMMU_CODE
BY ID
ACROSS HLTH_CODE
END
MEA1 MEA2 MUM1 MUM2 MCV PPD
3456 CO CO FE
4456 CO CO RE RE
5433 CO CO CO CO CO CO
This message has been edited. Last edited by: Trudy,
DEFINE FILE SYVSTAI
MEA1_CODE = IF HTLH_CODE EQ 'MEA1' THEN IMMU_CODE ELSE '';
MEA2_CODE = IF HTLH_CODE EQ 'MEA2' THEN IMMU_CODE ELSE '';
etc.etc.
END
2) magic match!
MATCH FILE SYVSTAI
SUM IMMU_CODE AS 'MEA1'
BY ID
WHERE HLTH_CODE EQ 'MEA1'
RUN
FILE SYVSTAI
SUM IMMU_CODE AS 'MEA2'
BY ID
WHERE HLTH_CODE EQ 'MEA2'
RUN
etc.etc.
_____________________ WF: 8.0.0.9 > going 8.2.0.5
Posts: 668 | Location: Veghel, The Netherlands | Registered: February 16, 2010
Just to wrap up this thread, I wondered if you could pass along your version of WebFOCUS and which HOLD FORMAT you were using when you got that FOC070.