Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED]ON TABLE SET MISSING ON IN WEBFOCUS 8

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED]ON TABLE SET MISSING ON IN WEBFOCUS 8
 Login/Join
 
Silver Member
posted
When I am using
 ON TABLE SET MISSING ON 
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>,


WebFOCUS 7.67 & WebFOCUS 80 windows
 
Posts: 45 | Location: Kabul, Afghanistan | Registered: August 07, 2011Report This Post
Virtuoso
posted Hide Post
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, 2015Report This Post
Silver Member
posted Hide Post
Hi BabakNYC,

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 

Yes we put the
 SET MISSING = ON 
before table file and getting same error.

our webfocus version is 80

thanks,
Sarwar


WebFOCUS 7.67 & WebFOCUS 80 windows
 
Posts: 45 | Location: Kabul, Afghanistan | Registered: August 07, 2011Report This Post
Virtuoso
posted Hide Post
Are you sure that "ON TABLE SET MISSING ON" is a valid statement?

What I know is that MISSING ON is an option when HOLDing data, or when DEFINEing or COMPUTEing a field.


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, 2006Report This Post
Silver Member
posted Hide Post
Danny-SRL,

yes it is working with WebFOCUS 767 but have issue with WebFOCUS 80.

Thanks,
Sarwar


WebFOCUS 7.67 & WebFOCUS 80 windows
 
Posts: 45 | Location: Kabul, Afghanistan | Registered: August 07, 2011Report This Post
Virtuoso
posted Hide Post
Sarwar,

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, 2006Report This Post
Virtuoso
posted Hide Post
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, 2015Report This Post
Silver Member
posted Hide Post
BabakNYC,

In WFS767 Getting the following message:
MISSINGTEST MAY BE SET OLD or SPECIAL ONLY

but in the WFS80 getting the following error:
(FOC822) VALID VALUES ARE MISSINGTEST=OLD SPECIAL

do you think it is an error or not? and i don't how to open a case in Tech Support

thanks,
Sarwar


WebFOCUS 7.67 & WebFOCUS 80 windows
 
Posts: 45 | Location: Kabul, Afghanistan | Registered: August 07, 2011Report This Post
Guru
posted Hide Post
FRA-Sarwar, to open a case you should use https://techsupport.informationbuilders.com/


WebFOCUS 8.1.05 / APP Studio
 
Posts: 272 | Location: Brazil | Registered: October 31, 2006Report This Post
Virtuoso
posted Hide Post
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, 2015Report This Post
Virtuoso
posted Hide Post
IMHO, it is an error.


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, 2006Report This Post
Master
posted Hide Post
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, 2006Report This Post
Expert
posted Hide Post
You may want to check out "MISSING=ON attribute" from help, within dev studio...
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED]ON TABLE SET MISSING ON IN WEBFOCUS 8

Copyright © 1996-2020 Information Builders