Focal Point
Report Assitant Help

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9491038472

March 06, 2008, 12:31 PM
MattC
Report Assitant Help
Hello all. I am new at this and I would like to try and figure out how to run this for current day - 1. I have begindate and enddate which forces the user to input dates, but I am just looking at grab everything for the prev business date. I am using Report Assistant, is there a Parameter I can use in the Selection Criteria to do this? I know there is tons of information about Date/Time, but I am having a hard time finding anything with Report Assistant.

Thanks


-* HTML Tool
-* Created by Report Assistant
-* FF Line do not change this line! Field Name
-* FF Line do not change this line! Alias
-* FF Line do not change this line! Format
-* FF Line do not change this line! Segment
-* FF Line do not change this line! displayTree=0
-* J001 J001
JOIN
TRACKING.TRACKING.PROBLEM
IN TRACKING
TO MULTIPLE PROBLEMDEFS.PROBLEMDEFS.PROBLEMDEF
IN PROBLEMDEFS TAG J001
AS J001
END
TABLE FILE TRACKING
SUM MAX.TRACKING.TRACKING.DATEENTERED AS 'DATEENTERED'
BY TRACKING.TRACKING.SERVER
BY TRACKING.TRACKING.LOCATIONID
BY TRACKING.TRACKING.BUSINESSDATE
BY TRACKING.TRACKING.STORENUMBER AS 'SITE_NUM'
BY TRACKING.TRACKING.PROBLEM
BY J001.PROBLEMDEFS.PROBLEMDESC
WHERE (TRACKING.TRACKING.PROBLEM EQ '32'
OR '64'
OR '128'
OR '256')
AND (TRACKING.TRACKING.BUSINESSDATE EQ DT(&begindate)
OR DT(&enddate));
ON TABLE SET STYLE *
TYPE=REPORT,
GRID=OFF,
$
ENDSTYLE
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE NOTOTAL
END
-* End Report Assistant


WebFOCUS 8.1.05
March 06, 2008, 12:49 PM
EWoerle
Matt,

Whenever I have wanted to do things like that I would use the &YYMD command to pull in todays date. something like this:

DEFINE FILE CAR
CURRDATE/YYMD=&YYMD;
PREVDATE/YYMD=CURRDATE-1;
END


Eric Woerle
WF 7.6.7 Reportting Server
ETL 7.6.10
Dev Studio 7.6.7
March 06, 2008, 12:50 PM
hammo1j
If you want a quick win in RA this is messy and you may be better off getting the user to enter the last business date.

AND (TRACKING.TRACKING.BUSINESSDATE EQ DT(&EnterLastBusinessDate)

Otherwise

You will have to define a field

TODAY/MDYY WITH TRACKING.TRACKING.BUSINESSDATE = '&DATEMDYY' ;
LSTBUSDAY/MDYY = DATEMOV(TODAY,'BD-') ;

and include

WHERE TRACKING.TRACKING.BUSINESSDATE EQ LSTBUSDAY in the where clauses

This will work but run like a pig since wf will be carrying out the date screening not the rdbms


Outside RA you can do this more neatly but if you want to stick with RA get the user to enter the date!



Server: WF 7.6.2 ( BID/Rcaster) Platform: W2003Server/IIS6/Tomcat/SQL Server repository Adapters: SQL Server 2000/Oracle 9.2
Desktop: Dev Studio 765/XP/Office 2003 Applications: IFS/Jobscope/Maximo
March 06, 2008, 02:18 PM
MattC
Thanks for the help. After a few attempts, I decided just to leave it with the begin and end dates. This will probably work better for us.


WebFOCUS 8.1.05
March 06, 2008, 02:46 PM
Spence
-* subtract 1 from current date also get current month and year from system date
-SET &TODAY = &YYMD - 1;
-SET &CYR = EDIT(&TODAY,'9999$$$$');
-SET &CMO = EDIT(&TODAY,'$$$$99$$');
-SET &CDA = EDIT(&TODAY,'$$$$$$99');
-SET &YESTERDAY = &CYR ||'/'||&CMO||'/'||&CDA;
-TYPE &TODAY
-TYPE &YESTERDAY

WHERE TRACKING.TRACKING.BUSINESSDATE EQ '&YESTERDAY';


WF 8 version 8.2.04. Windows.
In focus since 1990.