system
September 18, 2015, 5:12pm
1
I am using Web Intellignece 4.1 support pack 3.
I have a report that is run on a date parameter basis.
I want to auto-schedule this report to run everyday based on the previous day’s data.
How do I do set this up in the auto-scheduling section?
JoeyB99 (BOB member since 2015-06-17)
system
September 18, 2015, 5:17pm
2
Either create a new Predefined Condition in the universe that applies the necessary date condition, or upgrade to SP06 and use the new default values feature for prompts (which requires unx).
Joe
joepeters (BOB member since 2002-08-29)
system
April 1, 2016, 4:54pm
3
Hi everybody, it’s me again.
I do not have access to create an object for a universe, or whatever Joe is suggesting.
I am using version 4.1.
I have a relatively simple report and I want the output to always provide forecasted data based on the date field, such that it is >= today.
What options do I have? Is there something I can do with the report filter and simply omit any date criteria in the query filter?
JoeyB99 (BOB member since 2015-06-17)
system
April 1, 2016, 11:43pm
4
Aren’t these confusing?
I want to auto-schedule this report to run everyday based on the previous day’s data.
I want the output to always provide forecasted data based on the date field, such that it is >= today.
Which is it?
Guess… Maybe Relativedate function?
datawizard (BOB member since 2015-01-20)
MarkP
April 4, 2016, 8:56am
5
Hi everybody, it’s me again.
I do not have access to create an object for a universe, or whatever Joe is suggesting.
I am using version 4.1.
I have a relatively simple report and I want the output to always provide forecasted data based on the date field, such that it is >= today.
What options do I have? Is there something I can do with the report filter and simply omit any date criteria in the query filter?
Speak to your universe designer - they will be able to create the objects in the universe for you, as per the objects in this topic:
As per this topic on Oracle relative dates, here’s the same set of dates in SQL Server.
Please note that some may not work on SQL Server 2000, but all definitely work in 2005/8.
Yesterday
cast(convert(char(10),dateadd(d,-1,getdate()),23) as datetime)
Today
cast(convert(char(10),getdate(),23) as datetime)
The following also works for today:
dateadd(dd, datediff(dd,0,getdate()), 0)
Start of Current Month
cast(convert(char(7),getdate(),23)+'-01' as datetime)
End of Current Month
dateadd(d,-1…