↧
MOVED: Managing Report Studio Custom Groups Best Practices
↧
Re: Managing Report Studio Custom Groups Best Practices
Sounds to me like that should be a table, either in the database or else in the system. Maintain that table centrally and then bring it through into your reporting environment.
↧
↧
Cognos Contributor as standalone?
Can Cognos contributor be used as a standalone product? We go through BI now to access, but was wondering if we could bypass BI and get to the contributor portion. We want to use BI for something else but still want to get to Contributor.
Thanks.
Thanks.
↧
Re: Working w/ Singletons in a Large Table Used As a Report
C U R R E N T I S S U E ...
The existing code for the Query Q_TPRR utilizes a List's Rows to show
each month's entries for a Standalone Calculation of [Cases].
To show those monthly entries, we add 2 Data Items from Framework Manager of ...
1 ...
The existing code for the Query Q_TPRR utilizes a List's Rows to show
each month's entries for a Standalone Calculation of [Cases].
To show those monthly entries, we add 2 Data Items from Framework Manager of ...
1 ...
↧
Re: Working w/ Singletons in a Large Table Used As a Report
Quote
Before I test, that could be a Summary Filter, but we need to add that to code,
as an example ...
When (extract(month,?p_EndDate?)=9 and [Q_TPRR].[LTMonths] between 0 and 11) then [Q_TPRR].[Cases]
Perhaps this is what needs to be replaced??
......
↧
↧
Using ISNULL or IS EMPTY into a HTML Item
Hi, I created a report which contains two parameters(pGrupoAgente and pAgente)
I created a HTML item(report expression type) that displays the chosen values for both parameters where pGrupoAgente is required and pAgente is optional:
ParamDisplayValu...
I created a HTML item(report expression type) that displays the chosen values for both parameters where pGrupoAgente is required and pAgente is optional:
ParamDisplayValu...
↧
Re: Using ISNULL or IS EMPTY into a HTML Item
so you are asking a question and saying that you already know the answer ?
↧
Re: Working w/ Singletons in a Large Table Used As a Report
It looks like new Data Items, which are dragged in as Singletons MAY work.
Have tested two so far. An example of one is ...
Case
When ([Q_TPRR].[Month Begin Date] >= [G_CFY_StartDate] and [Q_TPRR].[Month End Date] <= ?p_EndDate?) Then [Q_TPRR]....
Have tested two so far. An example of one is ...
Case
When ([Q_TPRR].[Month Begin Date] >= [G_CFY_StartDate] and [Q_TPRR].[Month End Date] <= ?p_EndDate?) Then [Q_TPRR]....
↧
Time-bound measure to replicate an Excel graph
I have an Excel chart where the data (coming from Cognos reports) is manually entered and I'm trying to recreate the report in Cognos Analytics R12 - please see attachment. I've tried both Dashboard and standard report, but I haven't found a way to cre...
↧
↧
Re: Time-bound measure to replicate an Excel graph
Rolling 12 months is a very common thing in cognos. It's called 'relative time category'. It all depends on how you define it. What is the time period of 'Current R 12'? Does it mean 12 months going backwards starting from today? What is Prior 12?
Thes...
Thes...
↧
Re: Time-bound measure to replicate an Excel graph
It can also be done in the report but best if done in the package.
↧
Re: Redirection after user logs in (based on screen size)
Hmm. Ok I have mucked around with this type of thing in the past.
I would javascript a prompt page with just the standard cognos waiting logo, that auto submitted after 1 second. (Google javascript and auto page submit)
On this prompt page I would al...
I would javascript a prompt page with just the standard cognos waiting logo, that auto submitted after 1 second. (Google javascript and auto page submit)
On this prompt page I would al...
↧
Re: Sending Report only when there is data returned
Event Studio will do that, but it only works in Internet Explorer.
↧
↧
Re: Modelling for Extended Dimensions
Outstanding! Glad it works for you
Don't be hard on yourself. There are times recently where I have read an old post on Cognoise and thought "Hmmm. That's an interesting though...
↧
Re: Sending Report only when there is data returned
Doesn't appear that we have Event Studio. How would I tell?
↧
Re: Working w/ Singletons in a Large Table Used As a Report
N E W P R O B L E M ...
A Data Item such as ...
Case
When ([Q_TPRR].[Month Begin Date] >= [G_CFY_StartDate] and [Q_TPRR].[Month End Date] <= ?p_EndDate?) Then [Q_TPRR].[Cases]
End
... does NOT work and results in 0.
The Data Item is intended t...
A Data Item such as ...
Case
When ([Q_TPRR].[Month Begin Date] >= [G_CFY_StartDate] and [Q_TPRR].[Month End Date] <= ?p_EndDate?) Then [Q_TPRR].[Cases]
End
... does NOT work and results in 0.
The Data Item is intended t...
↧
Re: Working w/ Singletons in a Large Table Used As a Report
Attached Excel file shows structure of Date-type Fields and the Standalone Calculation of [Cases].
The Query "may" work if I can successfully convert the _make_timestamp to a Date. Have tried toDate() and Cast([TheDate], Date)_ but not working....
The Query "may" work if I can successfully convert the _make_timestamp to a Date. Have tried toDate() and Cast([TheDate], Date)_ but not working....
↧
↧
Re: Prompt to show current month and last 3 months
Put a filter in the query of the prompt to show the show the dates within that range.
[Date] >= _add_months( current_date, -3) and [Date] <= current_date
[Date] >= _add_months( current_date, -3) and [Date] <= current_date
↧
Re: Prompt to show current month and last 3 months
omg so simple thank you.... my issue now is I have the months repeating for every date.... how do I get to just show 1 version?
[First POL ETA Date]>= _add_months( current_date, -3) and[First POL ETA Date]<= current_date
[First POL ETA Date]>= _add_months( current_date, -3) and[First POL ETA Date]<= current_date
↧
Re: Prompt to show current month and last 3 months
You have to use the query item which provides the name of the month, not the date. The filter on the date is ok. Cognos will automatically use Select 'distinct' on the item and thus would show the name of the month only once.
↧