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'm new to WebFocus. I need to calculate the difference in fractional days between CURRENT DATE/TIME and a field containing the integer number of seconds since the Unix EPOCH (Thur 01 Jan 1970 00:00:00 GMT). In my report this calculation needs to be in a SubQuery. I'm using the "FIELDNAME ... SUB_QUERY ..." syntax which works but is not well documented in the 7.7 manuals. I need to do a "SELECT" in the SUB_QUERY's "JOIN_WHERE" clause. Suggestions?
I can't figure out how to do the date diff calculation in WebFocus. If it was SQL server it would be something like this: SqlServer date/time == (EpochDT / seconds_per_day) + days_between_01-01-1970_and_01-01-1900 == (EpochDT / 86400.0) + 25567.0
Any suggestions would be appreciated.This message has been edited. Last edited by: Kerry,
WebFOCUS v7r7; Windows; All Outputs
Posts: 1 | Location: Colorado | Registered: August 13, 2012
If you want a time element (hours, minutes, seconds) included in your result then look at using HDIFF. Feed your epoch datetime and the current datetime. HDIFF will give you any component difference - check out the help file in Dev Studio for details.
If you are only interested in days or higher then look at using DATEDIF. You will only require the YYMD (or equivalent - MDYY, DMYY etc.) component of your date.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
This is some code that I got from a customer that uses Remedy.
It isn't exactly what you want, but it may give you some ideas. In this example they allow their users to specify a start date and end date on an HTMLFORM. They then convert these dates to the equivalent Epoch date in "seconds" and read the result into amper variables. They then use these amper variables in a WHERE clause to retrieve data from Remedy for the Start/End date range.
Twanette
-***********************************************************
-* LGDMNSEC.fex (PCSR02.FEX)
-* This routine determines the Start, Last and End seconds from
-* the parameters entered at the Prompt.
-***********************************************************
DEFINE FILE CAR
-* CREATE FOCUS SMART DATE EQ TO DATE FROM SUPPLIED
STARTDATE/DMYY WITH COUNTRY = '&DATEFROM' ;
STARTDOW/W = STARTDATE ;
-* CREATE FOCUS SMART DATE EQ TO DATE END SUPPLIED
ENDDATE/DMYY WITH COUNTRY = '&DATEEND' ;
ENDDOW/W = ENDDATE ;
-* NUMBER OF DAYS SINCE 1901
STARTDAYS/I9 = STARTDATE ;
-* NUMBER OF DAYS SINCE 1901
ENDDAYS/I9 = ENDDATE ;
-* SUBTRACT NUMBER OF DAYS FROM 1970 TO 1901
ARSSTART/I9 = STARTDAYS - 25203 ;
-* SUBTRACT NUMBER OF DAYS FROM 1970 TO 1901
ARSEND/I9 = ENDDAYS - 25203 ;
-* DETERMINE # OF SECONDS ELAPSED SINCE 1970 TO DATE
STARTSECS/D15 = (ARSSTART * 86400) -7200;
-* DETERMINE # OF SECONDS ELAPSED SINCE 1970 TO DATE
LASTSECS/D15 = ARSEND * 86400 ;
-* DETERMINE # OF SECONDS ELAPSED SINCE 1970 TO DATE
ENDSECS/D15 = ((ARSEND) * 86400) +79200 -1;
END
TABLE FILE CAR
PRINT STARTSECS LASTSECS ENDSECS
IF READLIMIT IS 1
ON TABLE SAVE AS SLA01BB
END
-RUN
-READ SLA01BB &X1.A5 &START.A10 &X2.A5 &LAST.A10 &X3.A5 &END.A10
-TYPE START &START
-TYPE LAST &LAST
-TYPE END &END
-TYPE ********** END of Date Conversion Routine (LGDMNSEC) *************
WebFOCUS 8.2.06 mostly Windows Server
Posts: 195 | Location: Johannesburg, South Africa | Registered: September 13, 2008