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 already made some dashboards using widgets made in InfoAssist. We want to do as much without using any hand-coding.
Now we want to make a dashboard with InfoAssist and Page Designer containing six widgets. On the top of the dashboard there should be three possible choices: - day, widgets aggregated per day, showing the last 15 days - week, widgets aggregated per week, showing the last 15 weeks - month, widgets aggregated per month, showing the last 15 months
Is it possible to make this just with IA and Page Designer functionality, so without any HTML?
Regards Ron
P.S. Always interested in amazing things that can be done with InfoAssist in combination with Page Designer. Beautiful examples are hard to find on internetThis message has been edited. Last edited by: FP Mod Chuck,
You can DEFINE a field to be set to &YYMD first. Then create the additional 3 dates based on that field. Finally, use these defined fields in a WHERE test so you can limit the output to the dates you want.
However, if this is a commonly needed set of dates, why not define them in your synonyms as filters so all you have to do is drag and drop them into your charts/reports. I always make sure I have Yesterday, Last Week, Last Month, Last Quarter Last Year, et cetera ready to be used by everyone.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
We developed a single row table that has dates that are commonly used as filters in reports. We join the main table we are using to this table in our report and then we have all the dates (beginning of year, beginning of month, last month, etc) to use in the filters or headers of the report. Since the most commonly used table for reports has many years worth of data, it helps with runtimes as you can filter the data in the join (just pull this year's data, for example).
WebFOCUS 8.2.03 (production), 8.2.06 (testing) AppStudio, InfoAssist Windows, All Outputs
Posts: 183 | Location: Indiana | Registered: December 05, 2017
So I update my master. Define: - field A always containing the current date - field B = field A - 15 days - field C = field A - 15 weeks - field D = field A - 15 months
I make a report and define three filters: - filter X (day) = date of transaction > field B --> then I have the transactions of the last 15 days, but NOT aggregated by day - filter Y (week) = date of transaction > field C --> then I have the transactions of the last 15 weeks, but NOT aggregated by week - filter Z (month) = date of transaction > field D --> then I have the transactions of the last 15 months, but NOT aggregated by month
How do I get the correct aggregations? Is all this possible in one report?
regards RonThis message has been edited. Last edited by: Ronibi,
I think we misunderstand each other BabakNYC. I have a dashboard with six widgets and three filters or buttons. The filters are 'By day', 'By week', 'By month'.
Initially it shows the numbers of all the widgets aggregated 'By day'. When I push on 'By week' all the widgets should be updated and show the numbers aggregated by weeks for the last 15 weeks. When I then push on 'By month' all the widgets should be updated and show the numbers aggregated by months for the last 15 months.
So suppose I use a bar chart. Everytime the chart has 15 bars, but everytime it is aggregated on another level.
Originally posted by DWaybright: We developed a single row table that has dates that are commonly used as filters in reports. We join the main table we are using to this table in our report and then we have all the dates (beginning of year, beginning of month, last month, etc) to use in the filters or headers of the report. Since the most commonly used table for reports has many years worth of data, it helps with runtimes as you can filter the data in the join (just pull this year's data, for example).
I suppose the single row contains as starting point always the processing date?
I didn't have time to attempt this in InfoAssist but below is a starting point for what you're trying to do. There might also be much better ways of doing this. I've a TABLE request that captures the values you'll need for the GRAPH request that follows. In this example I first find the records I need using a parameterized BY and put the answer set in a HOLD file. Then I chart the data in the HOLD file. You'll have to add your FROM-TO date logic. As it is, it'll just assume the last 5 records in the data are what you want. You can change that to 15 for your specific example.
ENGINE INT CACHE SET ON
SET ARGRAPHENGINE=JSCHART
SET GRAPHDEFAULT=OFF
TABLE FILE retail/wf_retail
SUM WF_RETAIL.WF_RETAIL_SALES.REVENUE_US
BY HIGHEST 5 &XAXIS.( <Sale Year,WF_RETAIL.WF_RETAIL_TIME_SALES.TIME_DATE_YEAR_COMPONENT>,<Sale Year/Month,WF_RETAIL.WF_RETAIL_TIME_SALES.TIME_DATE_MONTH_COMPONENT>,<Sale Day,WF_RETAIL.WF_RETAIL_TIME_SALES.TIME_DATE_DAY_COMPONENT>).Select.
ON TABLE HOLD
END
-RUN
GRAPH FILE HOLD
SUM REVENUE_US AS 'Revenue'
BY E01 AS 'Sale Date'
ON GRAPH PCHOLD FORMAT JSCHART
ON GRAPH SET VZERO OFF
ON GRAPH SET GRWIDTH 1
ON GRAPH SET AUTOFIT ON
ON GRAPH SET LOOKGRAPH BAR
ON GRAPH SET AUTOFIT ON
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setPlace(true);
setCurveFitEquationDisplay(false);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/ibi_themes/Warm.sty,$
TYPE=DATA, COLUMN=N1, BUCKET=x-axis, $
TYPE=DATA, COLUMN=N2, BUCKET=y-axis, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
*END
ENDSTYLE
END
-RUN
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
Ok, thnx. Hope you don't bother but I would like to know if this is possible in InfoAssist without doing any coding. So just clicking. Although I don't know if a paramterized BY is possible in InfoAssist. I will give it a try one of these days.