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.
We have upgraded to version 8202M in our development environment (from 8105M) and are testing the various new features. There's now a calendar control that appears as a default when you run a report with a filter parameter on a date field. I really like it in some contexts, because it's quick and easy to pick a date.
However, in other contexts, it's a little challenging for our users. For example, some of our data contains dates far in the future to indicate an open end date (eg 12/31/2099). With the calendar, the user has to scroll through the years and months, as there's no way to directly enter a date, as far as I can tell.
Also, there's no time component displayed. There are other contexts where we want the user to be able to enter a time range of several hours.
Has anybody found a way to enter a date or time manually in 8202M?
Thanks, GailThis message has been edited. Last edited by: FP Mod Chuck,
Thanks for the suggestion! I've been pondering ways to set certain date defaults. However, I forgot to mention that we're limited to using the InfoAssist gui. There's some logic as to why our report writers don't have access to the code, but it does limit us in certain cases.
Can you provide a sample based example of the date prompt? I assume you're talking about Autoprompt in InfoAssist. Are Reporting Objects with -DEFAULTs an option?
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
Here's an example with the empdata table. The pop-up calendar appears to be related to the Actual format, vs the Usage format. If I use HIREDATE in the filter (which has a A8 format), I don't get a calendar. If I use NewHireDate (which I defined as YYMD), then I get the calendar.
We haven't used Reporting Objects at all, although I appreciate their value. In general, our report writers frequently need to add their own joins, even to pre-joined clusters that we've created for them.
-*COMPONENT=Define_empdata
DEFINE FILE ibisamp/empdata
NewHireDate/YYMD=EMPDATA.EMPDATA.HIREDATE ;
END
ENGINE INT CACHE SET ON
SET PAGE-NUM=NOLEAD
SET SQUEEZE=ON
-DEFAULTH &WF_HTMLENCODE=ON;
SET HTMLENCODE=&WF_HTMLENCODE
SET HTMLCSS=ON
-DEFAULTH &WF_EMPTYREPORT=ON;
SET EMPTYREPORT=&WF_EMPTYREPORT
-DEFAULTH &WF_SUMMARY='Summary';
-DEFAULTH &WF_TITLE='WebFOCUS Report';
TABLE FILE ibisamp/empdata
BY EMPDATA.EMPDATA.LASTNAME
BY EMPDATA.EMPDATA.FIRSTNAME
BY EMPDATA.EMPDATA.HIREDATE
WHERE NewHireDate LT &HIREDATE.(|FORMAT=YYMD).HIREDATE:.QUOTEDSTRING;
ON TABLE PCHOLD FORMAT HTML
ON TABLE NOTOTAL
ON TABLE SET CACHELINES 100
ON TABLE SET STYLE *
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, SUMMARY=&WF_SUMMARY.QUOTEDSTRING, $
ENDSTYLE
END
-RUN