can you tell me how to check that please, I'm not sure what that means?
Main Topics
Browse All TopicsHi
I have a cognos report that passes the prompts to a stored procedure that i have 'imported' into relasional model. The problem is one of the prompts using a data item from the Dimentional model and the stored procedure does not seem to recognise it as it returns no data??
The other uses the Relational prompt and is fine
Any ideas?
Adam
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
HI RWrigley
Not progressing at all with this, i have put a trace on the database when I run the report and this is the execution string the report is sending to the stored proceduer empindcount
exec ICAS.dbo.EmpIndCount 'Dec 1 2007 12:00:00:000AM', 'Dec 31 2008 12:00:00:000AM', '[Dimension View].[Industry].[Industry
But still no data
Any pointer would be greatly apprecited
Adam
It sounds like you are trying to use one prompt in two different ways. I'm guessing that the "use" value for the prompt is a dimensional member, so its making the parameter (Industry) a MUN. YOu want to pass the caption of this to the stored procedure, so I'd suggest you modify the prompt (and prompt query) to have a use value that is a caption. So assuming that the use value data item expression is:
[Dimension View].[Industry].[Industry
you want to change it to
caption([Dimension View].[Industry].[Industry
Then, the filter will be:
caption([Dimension View].[Industry].[Industry
Note that this will have a performance impact on the report, because cognos can't send that kind of a filter to the cube directly, so it'll probably retrieve all the industries from the datasource, and filter it locally.
No, becuase it isn't assigned at the FM level. The MUN is created dymanically in a DMR to represent a specific member of a dimension. As such, its a byproduct of the dimensional modeling. You normally wouldn't be all that aware of it, except that you're trying to prompt off of a dimension and pass that value to a stored procedure (and the fact that you're doing that is questionable in and of itself. If you're running a stored procedure, you probably aren't doing an analysis, and if you aren't doing an analysis, why are you using OLAP techniques?)
Business Accounts
Answer for Membership
by: RWrigleyPosted on 2008-06-26 at 12:24:49ID: 21878134
What is the member caption defininition for the data item that this prompt is coming from?