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.
Hello, I'm trying to get a display all items that have a date greater then the date entered. But the date is in DB2 and has a timestamp and it is having a problem. Here is what I have and it does not work. Any help will b greatly appreciated.
TABLE FILE CS_INV PRINT 'CS_INV_ACTV.CS_INV_ACTV.INV_STAT_CD' 'CS_INV.CS_INV.INV_SER_NBR_TXT' CTGY SUBTYPE INVTYPE 'CS_INV.CS_INV.INV_ACQR_DT' 'CS_INV.CS_INV.INV_ORIG_CST' 'CS_INV.CS_INV.ORIG_COST' BY 'OD_LOC.OD_LOC.LOC_CD' BY 'OD_LOC_TYPE_DOMN.OD_LOC_TYPE_DOMN.LOC_TYPE_CD' BY 'OD_LOC.OD_LOC.LOC_FULL_NME_TXT' BY LOC_TYPE BY 'OD_LOC.OD_LOC.LOC_SEQ_NBR' BY 'CS_INV_ACTV.CS_INV_ACTV.INV_CCN_ID' WHERE NOT INV_TYPE_CD IN (18,53); WHERE ((( LOC_CD EQ &LOC_CODE.(OR(FIND LOC_CD IN OD_LOC)).Please select Location Code:. )) AND ( LOC_SEQ_NBR EQ &LOC_SEQ_NBR.(OR(FIND LOC_SEQ_NBR IN OD_LOC)).Please select Seq number:. )) AND (( END_TIME GE &AS_OF_DATE ) AND ( BEG_TIME LT &AS_OF_DATE ) AND ( INV_ACQR_DT LE &AS_OF_DATE )); WHERE ((NOT INV_STAT_CD IN (3,4,6,7)) OR (( INV_STAT_CD EQ 4 ) AND ( BEG_TIME GT DATEADD(AS_OF_DATE, 'Y', -01))))
A timestamp is a seven-part value (year, month, day, hour, minute, second, and microsecond) that represents a date and time as defined previously, except that the time includes a fractional specification of microseconds.
The internal representation of a timestamp is a string of 10 bytes, each of which consists of two packed decimal digits. The first 4 bytes represent the date, the next 3 bytes the time, and the last 3 bytes the microseconds.
The length of a TIMESTAMP column as described in the catalog is the internal length which is 10 bytes. The length of a TIMESTAMP column as described in the SQLDA is the external length which is 26 bytes. DCLGEN therefore defines 26-byte, fixed-length string variables for TIMESTAMP columns.
So what does your MFD show as the definition? It appears you want a range of dates regardless of the timestamp, so you can play from there. Of course it is never a good idea to select on a define field if you can avoid it.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
What I'm trying to do is pull all info from a field that is great then the date entered in the AS_OF_DATE. The field being the BEG_TMST which is in timestamp verses the AS_OF_DATE is in YYMD. Everything works except this where clause, of course. I have also converted BEG_TMST to BEG_TIME = YYMD but still nothing.
WHERE ((NOT INV_STAT_CD IN (3,4,6,7)) OR (( INV_STAT_CD EQ 4 ) AND ( BEG_TIME GT DATEADD(AS_OF_DATE, 'Y', -01))))
I have been working on this for days and getting to the point of a migrain.
You seem to be testing against an & var (&AS_OF_DATE) which is a string. First you need to convert it to a date then do your DATE ADD...as in... DATEADD((DATECVT(&AS_OF_DATE, I8YYMD, YYMD)), M, -1)
Hope this helps,
Kevin
WF 7.6.10 / WIN-AIX
Posts: 141 | Location: Denver, CO | Registered: December 09, 2005