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     [SOLVED] Task error: STATIC TABLE: SCREENING DATA OUT OF RANGE: H00000096

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Task error: STATIC TABLE: SCREENING DATA OUT OF RANGE: H00000096
 Login/Join
 
Member
posted
I am suddenly getting this error message from a program that worked fine last night:

Task error: STATIC TABLE: SCREENING DATA OUT OF RANGE: H00000096

The error seems to only happen in report caster, when I run the report straight from developer studio I get my output not problems, however, when I run my report through report caster (which I use it to send the report via email) then I get the error above... help?

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.1.4

Platform: Solaris

Output: Excel, PDF, HTML, ALPHA, WP

Database: Oracle, DB2
 
Posts: 5 | Registered: June 09, 2006Report This Post
Silver Member
posted Hide Post
Most likely problem with a join ...


WF 7.6.5 / OS: XP / FOCUS
 
Posts: 42 | Registered: September 01, 2008Report This Post
Virtuoso
posted Hide Post
Darryl,

Could you show some code?


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
Darryl

update your signature with version information.
we can help better if we know more....

RC is sometimes more critical on codes




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Member
posted Hide Post
Okay a brief explanation of what the code is doing.. I am gathering information based on a date so that I can send a notice to the desired recipients informing that their grants is about to expire in 30 days. I noticed that this error doesn’t happen all the time. I was only able to create this error by changing the date range from anything between 5 and 31 days. Which leads me to believe that it is a certain record maybe that is throwing off the program?

-SET &ECHO=ALL;
-SET &YEAR = EDIT(&DATEYYMD, '9999');
-SET &YYYYMMDD = EDIT(&DATEYYMD, '9999$99$99');
-SET &STARTDATE = AYMD(&YYMD,29,'I8');
-SET &ENDDATE = AYMD(&YYMD,31,'I8');
-*ENGINE SQLORA SET DEFAULT_CONNECTION TEST
TABLE FILE FRBGRNT
PRINT
'FRBGRNT.FRBGRNT.FRBGRNT_AGENCY_PIDM'
'FRBGRNT.FRBGRNT.FRBGRNT_LONG_TITLE'
'FRBGRNT.FRBGRNT.FRBGRNT_PI_PIDM'
'FRBGRNT.FRBGRNT.FRBGRNT_PROJECT_END_DATE'
BY 'FRBGRNT.FRBGRNT.FRBGRNT_CODE'
WHERE ( FRBGRNT_PROJECT_END_DATE_TS LT DT(&ENDDATE) ) AND ( FRBGRNT_PROJECT_END_DATE_TS GT DT(&STARTDATE) );
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS STEPA FORMAT ALPHA
ON TABLE SET HTMLCSS ON
END
JOIN
STEPA.STEPA.FRBGRNT_CODE IN STEPA TO MULTIPLE FRREVNG.FRREVNG.FRREVNG_GRNT_CODE
IN FRREVNG AS J2
END
JOIN
INNER STEPA.STEPA.FRBGRNT_PI_PIDM IN STEPA TO MULTIPLE
GOREMAL.GOREMAL.GOREMAL_PIDM IN GOREMAL AS J3
END
JOIN
STEPA.STEPA.FRBGRNT_CODE IN STEPA TO MULTIPLE FTVFUND.FTVFUND.FTVFUND_FUND_CODE
IN FTVFUND AS J4
END
JOIN
FTVFUND.FTVFUND.FTVFUND_FMGR_CODE_PIDM IN STEPA TO MULTIPLE
FTVFMGR.FTVFMGR.FTVFMGR_FMGR_CODE_PIDM IN FTVFMGR AS J5
END
JOIN
FTVFMGR.FTVFMGR.FTVFMGR_FMGR_CODE_PIDM IN STEPA TO MULTIPLE
SPRIDEN.SPRIDEN.SPRIDEN_PIDM IN SPRIDEN AS J6
END
JOIN
SPRIDEN.SPRIDEN.SPRIDEN_PIDM IN STEPA TO MULTIPLE GOREMAL.GOREMAL.GOREMAL_PIDM
IN GOREMAL AS J1
END
DEFINE FILE STEPA
RESPN/A30=LOCASE(30, FRREVNG.FRREVNG.FRREVNG_RESPONSIBLE_USER_ID , RESPN);
RESPNEMAIL/A90=RESPN || '@fau.edu';
USERFAU/A100=GOREMAL.GOREMAL.GOREMAL_EMAIL_ADDRESS || ',' || ' ' || ',$';
FINMGR_ID/A9=SPRIDEN.SPRIDEN.SPRIDEN_ID;
FINMGR_LNAME/A60=SPRIDEN.SPRIDEN.SPRIDEN_LAST_NAME;
FINMGR_FNAME/A60=SPRIDEN.SPRIDEN.SPRIDEN_FIRST_NAME;
END
TABLE FILE STEPA
SUM
FRREVNG.RESPN
RESPNEMAIL
GOREMAL.J3GOREMAL_EMAIL_ADDRESS
J1GOREMAL_EMAIL_ADDRESS AS 'FINMGR_EMAIL'
BY FRBGRNT_CODE
WHERE GOREMAL_EMAL_CODE EQ 'FAU';
WHERE GOREMAL_STATUS_IND EQ 'A';
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS STEPB FORMAT ALPHA
ON TABLE SET HTMLCSS ON
END
DEFINE FILE STEPB
DISTVAL/A300=STEPB.STEPB.RESPNEMAIL ||';'|| STEPB.STEPB.J3GOREMAL_EMAIL_ADDRESS ||';'|| STEPB.STEPB.J1GOREMAL_EMAIL_ADDRESS || ',' || STEPB.STEPB.FRBGRNT_CODE || ',$';
END
FILEDEF EMAILGRNTTO DISK &FAU_DOMAIN_DIR.EMAILGRNTTO
TABLE FILE STEPB
PRINT
'STEPB.STEPB.DISTVAL'
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS EMAILGRNTTO FORMAT ALPHA
ON TABLE SET HTMLCSS ON
END
TABLE FILE STEPA
SUM
FRBGRNT_AGENCY_PIDM
GOREMAL.J3GOREMAL_EMAIL_ADDRESS
FRBGRNT_LONG_TITLE
FRBGRNT_PI_PIDM
FRBGRNT_PROJECT_END_DATE
MAX.FRREVNG_SEQ_NUM AS 'MAX,FRREVNG_SEQ_NUM'
FRREVNG_RESPONSIBLE_USER_ID
RESPN
RESPNEMAIL
FTVFUND_FUND_CODE
MAX.FTVFMGR_FMGR_CODE_PIDM AS 'MAX,FTVFMGR_FMGR_CODE_PIDM'
FINMGR_ID
FINMGR_FNAME
FINMGR_LNAME
BY FRBGRNT_CODE
WHERE ( J3GOREMAL_STATUS_IND EQ 'A' ) AND ( J3GOREMAL_EMAL_CODE EQ 'FAU' );
WHERE FTVFMGR_STATUS_IND EQ 'A';
WHERE SPRIDEN_CHANGE_IND EQ MISSING;
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS STEPC FORMAT ALPHA
ON TABLE SET HTMLCSS ON
END
JOIN
STEPC.STEPC.FRBGRNT_AGENCY_PIDM IN STEPC TO MULTIPLE
SPRIDEN.SPRIDEN.SPRIDEN_PIDM IN SPRIDEN AS J0
END
DEFINE FILE STEPC
AGENCY_NAME/A60=SPRIDEN.SPRIDEN.SPRIDEN_LAST_NAME;
PROJECT_TITLE/A48=SQUEEZ(48, FRBGRNT_LONG_TITLE, 'A48');
END
TABLE FILE STEPC
PRINT
FRBGRNT_AGENCY_PIDM
AGENCY_NAME
J3GOREMAL_EMAIL_ADDRESS
FRBGRNT_LONG_TITLE
PROJECT_TITLE
FRBGRNT_PI_PIDM
FRBGRNT_PROJECT_END_DATE
FRREVNG_SEQ_NUM
FRREVNG_RESPONSIBLE_USER_ID
RESPN
RESPNEMAIL
FTVFUND_FUND_CODE
FTVFMGR_FMGR_CODE_PIDM
FINMGR_ID
FINMGR_FNAME
FINMGR_LNAME
BY FRBGRNT_CODE
WHERE ( SPRIDEN_CHANGE_IND EQ MISSING ) AND ( SPRIDEN_ENTITY_IND EQ 'C' );
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD AS STEPD FORMAT ALPHA
ON TABLE SET HTMLCSS ON
END
JOIN
STEPD.STEPD.RESPN IN STEPD TO MULTIPLE GOBTPAC.GOBTPAC.GOBTPAC_EXTERNAL_USER
IN GOBTPAC AS J8
END
JOIN
GOBTPAC.GOBTPAC.GOBTPAC_PIDM IN STEPD TO MULTIPLE SPRIDEN.SPRIDEN.SPRIDEN_PIDM
IN SPRIDEN AS J9
END
TABLE FILE STEPD
BY FRBGRNT_CODE NOPRINT AS 'Grant Code:'
ON FRBGRNT_CODE PAGE-BREAK REPAGE
HEADING
"Email Contents"
WHERE SPRIDEN_CHANGE_IND EQ MISSING;
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT DOC
ON TABLE SET HTMLCSS ON
END


WebFOCUS 7.1.4

Platform: Solaris

Output: Excel, PDF, HTML, ALPHA, WP

Database: Oracle, DB2
 
Posts: 5 | Registered: June 09, 2006Report This Post
Member
posted Hide Post
[SOLVED]

Martin, you were right. It was a problem with the join. However, it wasn't a problem with the way I was doing the join so much so as it was a problem with the actual data.

After doing some research I found that all records (grants) that started with 'H' caused an error in the program, eg: H00000096. After speaking with the user it was determined that the fund and grant for these accounts did not equal each other and that is where the problem came in with the joins.

Thanks for all those who took the time to reply to my problem. Smiler

-
Darryl
FAU


WebFOCUS 7.1.4

Platform: Solaris

Output: Excel, PDF, HTML, ALPHA, WP

Database: Oracle, DB2
 
Posts: 5 | Registered: June 09, 2006Report 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     [SOLVED] Task error: STATIC TABLE: SCREENING DATA OUT OF RANGE: H00000096

Copyright © 1996-2020 Information Builders