Pentaho User Console(PUC) parameter error - pentaho

When I publish the prpt file in Pentaho User Console(PUC), I am getting error in parameter field when I select parameter values. after select the value from drop down the value is disappear. (I have attached image) .I have selected those values in prpt(Check the image) but its working fine in Pentaho Report designer(PRD). What is the solution?

Try unchecking the "validate values". It will work :)

Related

conditional Page break in SSRS

I am developing SSRS reports. For example, I have a value "PageBreak" in one of
the column called "HeaderDescp". Wherever i find a value "PageBreak" in the column HeaderDescp, Report has to go to next page. If there is no page break found it should fit into the page itself.
Thanks
WHERE TO TRY THE BELOW Code? SHOULD I CREATE A GROUP ?
=IIF(Parameters!PageBreak.Value,Fields!MyField.Value,"")
Try this one.create a boolean parameter and give it default value(optional)

can grow field object not working in crystal report

I am working with crystal report in visual studio , the report contains data from the data base . the Problem is that the field object height in the report it is fine for short text length but for long text some characters that exceed the field object height will be hidden.
I have been used can grow property by checking it in the format object window but it didn't work the section height didn't increase automatically to wrap all text .
please how can i solve this problem ? any help would be appreciated
thanks in advance
In crystal reports, create a new formula. (it can be done by right-mouse clicking on Formular Fields in the "Field Explorer". In this formula field, drag and drop the notes field so the formula would look something like this {Command.Notes} or {TableName.Notes}. Then back in your report, right mouse click in the Details section and select Insert --> Text Object. Then drag and drop that newly created Formula field into the newly created blank text object.

SSRS. Specify dynamic links to reports via expression

I'm creating report with Visual Studio 2013. Here will be 1 report with links to other reports.
Report with links to other reports have following design:
[Name] [Description] [Instances_Count]
I need to make [Name] clickable (add action on It with link to other reports).
In preview It returning following:
One This is 1 report. 3
Two This is 2 report. 7
Three This is 3 report. 4
I need to make that If clicked on One It redirected to report with name report_1.rdl, the same If I click on Two - redirect to report_2.rdl
I need to make something like that:
Right Click on [Name] > Properties > Action > Check Go to report
And here I need to specify expression something like:
=Switch(Fields!Description.Value = "This is 1 report.", "report_1.rdl")
And this throws an error. I can open report with links, in this case name One is clickable, after clicking It redirecting to report_1.rdl, but after I click View Report (in redirected report_1.rdl) It throws following error:
An error occured during local report processing.
Error in the appliaction.
Object references not set to an instance of an object.
Have you ideas how to fix this error?
P.S. This is problem in expression. If I put link directly to any of reports It redirecting successfully. It throws an error only when I'm using this expression.
First I'd try dropping the ".rdl" portion of the report name in your expression. Then I'd make sure that the expression is located in the "specify a report" box in the action tab for the placeholder. If all else fails, try using a different method of specifying the report path.

SSRS not displaying data but displays data when query runned in tsql

I have a SSRS report that do not display data in preview mode. However, when I run the same query in SQL Server 2008 R2 I can retrieve the results
What could cause this?
I also used Set FMTOnly to off because I use temptables.
if you use "SQL Server Business Intelligence Development Studio" not "Report Builder" then on reporting services (where is you table):
click View -> Properties Window (or just press F4)
select the tablix
on properties window find "General" and in the "DataSetName" choose your "Dataset"
On tablix fields set values from your "DataSets"
Or just do like here(from 8:50): http://www.youtube.com/watch?v=HM_dquiikBA
The Best solutio
Select the entire row and change the font to arial or any other font other than segoe UI
default font
default font
no display in preview
no display in preview
changed font first row
changed font first row
first row is displayed in preview
first row is displayed in preview
changed secon row font
changed secon row font
data is displayingig
data is displayingi
A workaround should be:
1) Select the parameters and click on View Report (you will not see nothing or some cells will display content and some not)
2) Click on Print Layout (next to the printer)
You will be able to see content. If you have expand/collapse functionality and then you will not be able to interact with the UI.
I faced similar issues. If you remove/delete the parameter, open the dataset definition and refresh the fields, the parameter should be recreated. Then run the report. It worked for me.

The data set name is missing in the data region 'DataSetName'

I added an additional, new DataSet to my report and have been getting this cryptic error ever since.
The issue was that when the report had elements setup using the first data set I'd defined when the report was created. Adding an additional data set reset the DataSetName value to be blank. In this case for my Table but it could be for a List, etc.
To correct:
Open the report in SQL Server Business Intelligence Development Studio (AKA Visual Studio)
View the object details in the Properties Window (View > Properties Window or press F4)
Check the DataSetName value (under the Data section)
Update the value to point to the correct Data Set
Examine your RDLC file, open it in a XML editor. Most specifically, take a look at the Dataset section. See if there are some old ones that are still there. You can edit this file directly, but be careful what you do.
You can also attempt to run the RDLC file through a XML validator, and see if it comes up with any errors. Make sure to validate against the RDLC file's schema. (http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition/ReportDefinition.xsd)
I had a bit of trouble finding the correct properties window that contained this value, so I will add the following:
On the Layout Tab, press F4 to bring the properties box up.
In the dropdown at the top of the properties box, find your table and select it.
You should now see that data section about halfway down, along with the DataSetName property the error is complaining about.
I know this is a decade late, but this is to possibly help the next guy that is searching the internet for answers (like me).
In SSRS, right-click any unused/white area of the report then choose Select-> and the Group level (not group level content) that you are getting the error about.
In the properties window (Menu->View->Check Properties) for the Group Level, scroll down to General the DataSetName. Select the drop down arrow and choose the original dataset.