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 am getting this error: "(FOC822) VALID VALUES ARE MISSINGTEST=OLD SPECIAL" how can I solve this ?This message has been edited. Last edited by: <Emily McAllister>,
What's the data source and specific version of WF? Could you share a simple example of this issue with a sample data so we can try it? The SET command seems okay to me so it has to be more specific to what you're trying to do. Do you get the same error if you issue the SET command before your TABLE? SET MISSING=ON TABLE FILE ... END
According to tech support: SET MISSINGTEST=SPECIAL|OLD(default) is a little known and undocumented setting usedspecifically for ETL and Data Migrator Flows. This setting actually is used for backward compatibility to revert to old behavior involving how missing data is loaded into the target database.This message has been edited. Last edited by: BabakNYC,
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
The data source is a temp table, like the following:
TABLE FILE TEMP1
PRINT FIELD1 FIELD2 FIELD3
BY FIELD4
ON TABLE HOLD AS TEMP2 FORMAT ALPHA
END
-RUN
JOIN FIELD4 IN TEMP2 TO FIELDx IN SQLTABLE AS SA
TABLE FILE TEMP2
PRINT FIELD1 FIELD2 FIELD3 FIELD4
ON TABLE SET MISSING ON
END
-RUN
I checked the documentation for 7.7 and 7.6. I did not find a MISSING parameter that can be SET. You can have an option MISSING when you issue a command ON TABLE HOLD [MISSING ON]. You can use the HOLDMISS parameter.
If it really did work, it seems to be a quirk in the version that was ironed out after.
When you write:
JOIN FIELD4 IN TEMP2 TO FIELDx IN SQLTABLE AS SA
TABLE FILE TEMP2
PRINT FIELD1 FIELD2 FIELD3 FIELD4
ON TABLE SET MISSING ON
END
what are you trying to achieve? That missing values should be written as such? If so, wouldn't the SET HOLDMISS=ON do the trick?
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
You may want to open a case with tech support. If you have code that used to work in an old release they might be able to trace what causes the error in the new release.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
It seems like you used to get a warning in 7.x and now you're getting an error. I don't think you were getting what you expected even in 7.6 so you might want to review the code and figure out what you really wanted to get it to do and make sure the outcome is correct.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
I've been using FOCUS and WebFOCUS for 30 years and never seen this documented:
"ON TABLE SET MISSING ..."
I think you are confusing this with HOLDMISS. According to the documentation, MISSINGTEST is for ETL and Data Migrator.
I've always used it on the HOLD/SAVE line like this:
"ON TABLE HOLD MISSING ON"
You are getting the reference to MISSINGTEST because that is the closest thing to MISSING in the SET commands. MISSING all by itself is not a SET command
With SET commands you have:
NODATA - Determines the character string that indicates missing data in a report. HNODATA - Controls missing values propagated to a HOLD file. HOLDMISS - Distinguishes between missing data and default data (zeros or blanks) in a HOLD file. VZERO - Treats missing values on the vertical axis as zeros. NULL - Enables creation of a variable-length comma or tab delimited HOLD file that differentiates between a missing value and a blank string or zero value. COMPMISS - Controls whether the missing attribute is propagated to reformatted fields in a report request.This message has been edited. Last edited by: jgelona,
In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006