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.
When I am trying to put in a datetime value in a filter in IA+, the date picker messes everything up. And the new "feature" in 8.2 is that you HAVE to use the datepicker GUI. Unlike 8.1 where you could type in the value.
Example is when I am trying to choose a date at 4:45 am This is what I choose:
However, this is the SQL Trace and of course that breaks:
Has anyone else had problems with this?
The only workaround that I found is to do a WHERE expression: This message has been edited. Last edited by: Hallway,
Hallway
Prod: 8202M1
Test: 8202M4
Repository:
OS:
Outputs:
Posts: 608 | Location: Salt Lake City, UT, USA | Registered: November 18, 2015
What's the database? What's the format of FWLSTARTDATETIME? I just change my Order_Date format in sql server's Northwind/ORDERS to HYYMDI to reflect only hours and minutes and this is what my trace looks like:
SELECT
T1."OrderDate"
FROM
dbo.Orders T1
WHERE
(T1."OrderDate" BETWEEN CAST('19980408 14:30' AS SMALLDATETIME)
AND CAST('19980505 14:10' AS SMALLDATETIME))
GROUP BY
T1."OrderDate"
ORDER BY
T1."OrderDate";
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015