Some SSRS Reports are not working in CRM 2011 but other ssrs reports are working fine.
Used filtered views in the Query and ran the report with system Administrator role. It is showing no data available but when tried to run in BIDS it is working and also in Report Manager.
Any idea on this issue, Friends. Please suggest some solution if you have any. Thanks!
Are you use pre-filtering ? When you run report from CRM, default filter is set to records was created in last 30 days (when you use pre-filtering). Maybe your records are olrder than 30 days and in SQL are visible but not in CRM. Try to change filter during run report.
you need to use shared data source. Just click on your current Data Source and convert to Shared one as below. So instead of embedded, select 'Use Shared datasource reference' and make your connection via windows authentication. This was the way which helped me to show data within CRM!
Related
I have finally connected my default Google SQL database to my AppMaker and I have imported my data. I have built a very simple view and it shows my data. When I preview my app it shows all my data. When I publish it, it does not show any data
I have changed the access mode and publish as user or publish as me, but it has no effect
The preview should be just like the publish, right? what is the point of having a preview that looks different from production. Why is it not showing my data?
I think you have to tell it that both the preview AND the production versions use your custom sql database.
I've recently been using the Oracle Catalog Manager to create lineage reports to determine which analyses use particular columns. I haven't found a way, however, to determine which reports are used on particular dashboards. So if I wanted to delete a report, is there a way to determine which dashboards would be affected?
I know that when I migrate a dashboard page from the development environment to the test environment that the structure is preserved, so this information must be saved somewhere. However, when I try to create a report in the "_portal" folder that contains the dashboards, the report is always blank.
I was using this page as an initial reference, but it only discusses how to find the reports that would be affected should a column be deleted from the rpd.
Part of what I'm trying to do is a clean-up to locate reports that aren't being used on any dashboards, but I also want to be able to better track which reports are being used and on which dashboards.
The Create Report function will build a report of Dashboard/Analysis relationships.
Regarding moving/copying dashboards, it will not move all the dependent objects automatically - you will need to structure your Presentation Catalog such that you can migrate folders of objects as required.
OBIEE Catalog Manager Report lacks the ability to extract data as
Dashboard,
Dashboard Page,
Dashboard Prompt,
Analysis
in a single row of data
We can have two combinations
Dashboard, Dashboard Page OR
Dashboard, Dashboard Prompt, Analysis
The OBIEE usage table does store the 4 fields in a single row.
I have created .rdl file with two date parameter. The report is working fine in local. But I am facing some difficulties after I integrated the rdl file into ASP.NET MVC application.
The problem is Date Parameter performs postback once I select the date. So I need to wait for some time to go with another parameter and The performance of report is good when test it in local and Database.
Please share me if you have any solution.
Thanks.
Jay
I am using Crystal Reports 2008 and Visual Studio 2010 (.NET 4.0 framework) to build an ASP.NET web application to display Crystal Reports files through a "CrystalReportsViewer" web control. My application changes the data source of the report at runtime based on a configuration file.
Some of the reports I use have dynamic parameters that pull values from a database table. When I run the Crystal Report, it populates the parameter listbox and allows the user to choose one or many of them. When I run the report in the CrystalReportsViewer control on the ASP.NET page, it gives me an empty text box where the parameters list used to be.
Is there a way that I can 'refresh' or re-populate the dynamic parameters?
Thanks in advance,
-Steven
I've always had trouble with dynamic parameters. I don't use Crystal in the exact same way you are, but I've noticed that when my data comes from a Stored Procedure, the dynamic parameters are empty when I run the report. My workaround is to set the paramters to null when running the report and then clicking OK on the parameter screen. At that point crystal refreshes the parameters list and them I'm presented with the values in the db to select from. Dynamic parameters work well for me when I add the data tables directly to the report instead of using a stored procedure.
I don't know if this really answers your question but I hope it helps.
I was just wondering if this is possible. I have a site that admins use to add products to our database. The database is in SQL Server 2008 and I use Visual Studio 2010 using VB.net and was hoping that upon addition of a new product, it would automatically generate a folder assigned to that product's ID.
I haven't found anything online that would suggest that this is a possibility, but it would make it a lot easier for me. As of right now, I have to remember to create a folder in the X: drive for each product that has been added. We are up to 645 products now, so you can see my need for some kind of automation here.
Any kind of help would be greatly appreciated!
If you're using a web service or web project to create products, you could create the directory there when the user enters a new product.
Dim dir As New System.IO.DirectoryInfo("C:\" & someFolder)
If Not dir.Exists Then
dir.Create()
End If
If products are always added within a call to a stored procedure, you could add code to call xp_cmdshell to "MD < DirName >" after the insertion. If not done via stored procedures, you could do something similar in an insert trigger. However, both of these are really bad ideas. SQL is first and foremost a database engine, not a file system manager or flexible programming tool. You are much better off having the application(s) that cause the creation of products be responsible for manipulating files and folders on your hard drives.