Custom jinja variable in apache superset - jinja2

I created the custom variable {{year_var}} in SQL lab and assigned a value in the parameter menù: {"year_var":2014}. After checking that the query is running I created a virtual dataset, a chart and a dashboard.
My question is: How can I assign a value to {{year_var}} from the filter menù in the dashboard?

Related

Report fails when is build in VS but doesn't fail with MSBuild

I am trying to create deployment job that would checkout from git and builds all the reports in the solution. If it can't build then I want that job to fail. I've created the simple report with dataset as "select 1 as one" and then added 1 non existing column reference in the report. When I tried to build it with Visual Studio it is failing, however it is successfully build with the MSBuild ... What can be the issue?
Severity Code Description Project File Line Suppression State
Error [rsFieldReference] The Value expression for the text box ‘one’
refers to the field ‘one1’. Report item expressions can only refer to
fields within the current dataset scope or, if inside an aggregate,
the specified dataset scope. Letters in the names of fields must use
the correct case. C:\Users\kultasev\Repos\mfi-online-reports\MFI
Online Reports\broken_report.rdl 0

3rd party application passing url parameters to SSRS report

The 3rd party application is passing the parameter values as follows: Parameters=Collapsed&Priority=P1%7cP2. It is using a %7c (which is a pipe) instead of passing the parameters the way SSRS is looking for them as follows: Parameters=Collapsed&Priority=P1&Priority=P2. The parameter is multi select in SSRS and works in Report Builder just fine. My where clause is using IN (#priority).
How can I get SSRS to use the parameter values that are being passed in the URL?
If you can't change the application to provide the correct multi-value parameter syntax (...&Priority=Value1&Priority=Value2&Priority=Value3...) you can set the value that is passed to your dataset in the Parameters section of the dataset properties to be the following expression:
=split(Parameters!Priority.Value,"|")
This will take the pipe delimited list and separate it into a list of items that can be passed to your SQL query and used with the IN function.
I have created a dummy report to demonstrate this:
Parameter
Dataset
Dataset Properties
Report Result

How to set parameters for chart in spagoBI server?

I'm trying with a static chart in spagobi server and now I need to create a dynamic chart.
How can I set a date parameter for a chart in spagobi server?
1- First of all, edit your Dataset to make it dynamic, add a filter (with you date parameter) in you where statement or whatever..
2- Then, you have to create a LOV (list of value), then create an Analytical driver which take his values from the LOV you already create and finally edit you chart document to add a new parameter which will be linked to the just created Analytical driver.
3- The name of your parameter in your Dataset must have the same name as the url in the parameter you define in your chart document.
Hope this steps will help you

Map parameters to the query in oracle reports

I have created two bind date parameters in oracle reports on top of that I have created 3 more general parameters but I am unable to map those parameters to the query.
Please help me how to map the parameters(other than bind parameters).
as i have understood your question is that you want to know how to include the parameters you have made into the query. for this just write as below ..suppose your parameter name is p_from_date. now u want to query the value where there the value is equal to your parameter. then it could be written as
where effective_date=:p_from_date.

Passing parameters to a Dataset from an expression in SSRS

In a report I would like to have the individual static text fields internationalised.
The idea is to have a default word or phrase like "Date and Time" and pass this string to a dataset with static parameters such as Culture_Code.
My question is how do I set the value of the parameter to pass to the dataset BEFORE calling the dataset within each individual expression of each text box?
Example expression;
Parameter!Text_To_Translate.Value = "Date and Time"
=First(Fields!Translated_Text.Value, "Language_Text")
I am using SSRS 2008R2.
if you want to pass the parameter before calling the dataset then you have to pass the parameter in the url of reportserver
http://localhost/reportserver
url format:
http://<localhost/servername>/reportserver/Pages/ReportViewer.aspx?<report_name>&rs:Command=Render&parameter_name=value
here the way you have to pass the value.
If your report layout is such that all of the text fields to be internationalized are in one or two regions, it may be better to set those regions up as data regions and use a separate query (or queries) to populate them, based on your Culture_Code parameter value.
This assumes you are pulling the localized values out of a data source you can connect to - which may be updated or extended over time.