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.
Greetings Ginny and all the rest of you smart folks out there! I have yet another challenge. The customer asked that the 'monthly' report, which I now have working very nicely thanks to your help, be subtotaled by 'weekly' intervals in a new Weekly Totals Report. They want the report to be exactly the same except instead of reporting by MONTH/YEAR, it will be reported by WEEK/MONTH/YEAR. I'm not able to use the MATCH logic as there are not exact matches for the full date as there were in MONTH/YEAR. Any suggestions would be grately appreciated! Here is the code of the existing MONTH/YEAR Report... -* File Ginny2.fex -SET &FROM_YRMTH_INPUT = '12/2007'; -SET &TO_YRMTH_INPUT = '02/2009'; -SET &FROM_YRMTH = EDIT('&FROM_YRMTH_INPUT.EVAL','$$$9999')|EDIT('&FROM_YRMTH_INPUT.EVAL','99'); -SET &TO_YRMTH = EDIT('&TO_YRMTH_INPUT.EVAL','$$$9999')|EDIT('&TO_YRMTH_INPUT.EVAL','99'); -SET &MnthCount = YM(&FROM_YRMTH,&TO_YRMTH,'I3') ; -TYPE FROM_YRMTH &FROM_YRMTH -TYPE TO_YRMTH &TO_YRMTH -TYPE MnthCount &MnthCount
-* Create a temporary master for all the required months. FILEDEF MOLISTMAS DISK monthlist.mas -RUN -WRITE MOLISTMAS FILENAME=MONTHLIST,SUFFIX=FIX -WRITE MOLISTMAS SEGNAME=DATESEG,SEGTYPE=S0 -WRITE MOLISTMAS FIELDNAME=DATEYYM,,FORMAT=YYM,ACTUAL=A6,$
-* Load the temp file with all the months. To be used in the match later. FILEDEF MONTHLIST DISK monthlist.ftm -RUN -REPEAT LOADLOOP FOR &Cntr FROM 0 TO &MnthCount ; -SET &LdCnYrMth = AYM(&FROM_YRMTH, &Cntr , 'I6') ; -WRITE MONTHLIST &LdCnYrMth -TYPE MnthList &LdCnYrMth -LOADLOOP
SET ASNAMES=ON
DEFINE FILE TBLBEREAVEMENTBURIAL RPTDTCLSD/YYM = HDATE(DATECLOSED, 'YYMD'); RPTDTRCVD/YYM = IF DATERECEIVED GT DT(18000101000000) THEN HDATE(DATERECEIVED, 'YYMD') ELSE HDATE(DATEADDED, 'YYMD'); END
TABLE FILE TBLBEREAVEMENTBURIAL COUNT RPTDTCLSD AS DATECNT1 BY RPTDTCLSD AS DATEYYM WHERE RPTDTCLSD FROM &FROM_YRMTH TO &TO_YRMTH WHERE RPTDTRCVD LT RPTDTCLSD ON TABLE HOLD AS LASTWKCO FORMAT ALPHA END -*-EXIT -RUN ? HOLD LASTWKCO
TABLE FILE TBLBEREAVEMENTBURIAL COUNT RPTDTRCVD AS DATECNT2 BY RPTDTRCVD AS DATEYYM WHERE RPTDTRCVD FROM &FROM_YRMTH TO &TO_YRMTH ON TABLE HOLD AS NEWREFERRALS FORMAT ALPHA END -*-EXIT -RUN ? HOLD NEWREFERRALS
TABLE FILE TBLBEREAVEMENTBURIAL COUNT RPTDTRCVD AS DATECNT3 BY RPTDTRCVD AS DATEYYM WHERE RPTDTRCVD FROM &FROM_YRMTH TO &TO_YRMTH WHERE DATECLOSED IS MISSING ON TABLE HOLD AS NXTWKCO FORMAT ALPHA END -*-EXIT -RUN ? HOLD NXTWKCO
MATCH FILE MONTHLIST BY DATEYYM RUN FILE LASTWKCO PRINT DATECNT1 BY DATEYYM RUN FILE NEWREFERRALS PRINT DATECNT2 BY DATEYYM RUN FILE NXTWKCO PRINT DATECNT3 BY DATEYYM AFTER MATCH HOLD AS DATECOUNTS OLD-OR-NEW END
TABLE FILE DATECOUNTS PRINT DATECNT1 AS 'Last Week Carry Overs' DATECNT2 AS 'New Referrals' DATECNT3 AS 'Next Week Carry Overs' BY DATEYYM AS 'Year / Month' END
Thanks! SamIam
WebFOCUS 7.6.4 Developer Studio on Windows XP Professional, Version 2002, Service Pack 2 Output: PDF
Just define another field where you have used DATEMOV to convert DATECLOSED to a beginning of week (BOW) or end of week (EOW). Then add that as an additional sort. The trick, however, is getting it to look right when a week is split up by the end of a month.
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007
sam read this thread calculating weeks the HPART function has some wierd wrinkles, but you can get a week number for each date in your original data pull.. Having said that tho, i'm now really liking Darin's idea of just defining a new field that takes every day and assigns it to a date that is beginnig of week..that gets around the problems with HPART...
say Sam, who do you work for?
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Darin, that worked like a charm! Thank you very kindly!!
Suzannah, thanks for the HPART input. I'll put that in my notes! Also, I work for Harris County, Texas. Why do you ask?
Here is my final code for any newbies out there who are following along... -* File weeklyreport.fex -SET &FR_MDYY_INPUT = '01/01/2007'; -SET &TO_MDYY_INPUT = '02/01/2007'; -SET &FR_YYMD = EDIT('&FR_MDYY_INPUT.EVAL','$$$$$$9999')|EDIT('&FR_MDYY_INPUT.EVAL','99')|EDIT('&FR_MDYY_INPUT.EVAL','$$$99'); -SET &PREV_YYMD = &FR_YYMD; -SET &TO_YYMD = EDIT('&TO_MDYY_INPUT.EVAL','$$$$$$9999')|EDIT('&TO_MDYY_INPUT.EVAL','99')|EDIT('&TO_MDYY_INPUT.EVAL','$$$99'); -SET &LdYYMD = &FR_YYMD; -SET &MonthName = CHGDAT('YYMD', 'MX', &FR_YYMD, 'A15'); -SET &DSPL_FRDT = EDIT(&MonthName)|' '|EDIT('&FR_MDYY_INPUT.EVAL','$$$99')|' '|EDIT('&FR_MDYY_INPUT.EVAL','$$$$$$9999'); -SET &MonthName = CHGDAT('YYMD', 'MX', &TO_YYMD, 'A15'); -SET &DSPL_TODT = EDIT(&MonthName)|' '|EDIT('&TO_MDYY_INPUT.EVAL','$$$99')|' '|EDIT('&TO_MDYY_INPUT.EVAL','$$$$$$9999'); -SET &Cntr = 1;
-* Create a temporary master for all the required Weeks. FILEDEF WKLISTMAS DISK weeklist.mas -RUN -WRITE WKLISTMAS FILENAME=WEEKLIST,SUFFIX=FIX -WRITE WKLISTMAS SEGNAME=DATESEG,SEGTYPE=S0 -WRITE WKLISTMAS FIELDNAME=DATEYYMD,,FORMAT=YYMD,ACTUAL=A8,$
-* Load the temp file with all the Weeks. To be used in the match later. FILEDEF WEEKLIST DISK weeklist.ftm -RUN -REPEAT LOADLOOP WHILE &LdYYMD LE &TO_YYMD; -WRITE WEEKLIST &LdYYMD -SET &LdYYMD = AYMD(&PREV_YYMD, 7, 'I8'); -TYPE To &LdYYMD -SET &PREV_YYMD = &LdYYMD; -LOADLOOP
SET ASNAMES=ON
DEFINE FILE TBLBEREAVEMENTBURIAL RPTDTCLSD/YYMD = IF DATECLOSED LT DT(00010101000000) THEN '17990101' ELSE HDATE(DATECLOSED, 'YYMD'); RPTDTBURY/YYMD = IF DATEBURIAL LT DT(00010101000000) THEN '17990101' ELSE HDATE(DATEBURIAL, 'YYMD'); RPTDTRCVD/YYMD = IF DATERECEIVED LT DT(00010101000000) THEN HDATE(DATEADDED, 'YYMD') ELSE HDATE(DATERECEIVED, 'YYMD'); CNTR/I4 = 0; END
TABLE FILE TBLBEREAVEMENTBURIAL COUNT RPTDTBURY AS WKCOUNT1 AND COMPUTE DATEYYMD/YYMD = DATEMOV(RPTDTBURY, 'BOW'); BY RPTDTBURY WHERE RPTDTBURY FROM &FR_YYMD TO &TO_YYMD WHERE CEMETERY = 'Harris County Cemetery' WHERE TYPE = 'Adult Burial' ON TABLE HOLD AS ADLTBURY FORMAT ALPHA -*ON TABLE SUBTOTAL END -*-EXIT -RUN ? HOLD ADLTBURY
TABLE FILE TBLBEREAVEMENTBURIAL COUNT RPTDTBURY AS WKCOUNT2 AND COMPUTE DATEYYMD/YYMD = DATEMOV(RPTDTBURY, 'BOW'); BY RPTDTBURY WHERE RPTDTBURY FROM &FR_YYMD TO &TO_YYMD WHERE CEMETERY = 'Harris County Cemetery' WHERE TYPE = 'Baby Burial' ON TABLE HOLD AS BABYBURY FORMAT ALPHA -*ON TABLE SUBTOTAL END -*-EXIT -RUN ? HOLD BABYBURY
MATCH FILE WEEKLIST BY DATEYYMD RUN FILE ADLTBURY PRINT WKCOUNT1 BY DATEYYMD RUN FILE BABYBURY PRINT WKCOUNT2 BY DATEYYMD AFTER MATCH HOLD AS DATECOUNTS OLD-OR-NEW END
After going to the last user Forum here and seeing what the Houston Police Department are doing with WF, I am afraid to ask where the bodies are buried.
Pat WF 7.6.8, AIX, AS400, NT AS400 FOCUS, AIX FOCUS, Oracle, DB2, JDE, Lotus Notes
Posts: 755 | Location: TX | Registered: September 25, 2007