Business Objects Web Intelligence: Dynamic Input Controls - business-objects

I have a report with 2 input controls: team leader and employee. Lets say that we have 2 teams:
Andy's team: composed of Alice, Bob and Charlie
Bert's team: composed of Alfred and Cheryl
At the moment, the input controls show all employees (Alice, Bob, Charlie, Alfred and Cheryl) regardless of which team I choose. If I choose Bert, I'd like to see just his 2 employees.
My question is: how can I change the list of employees in my input control, based on the selection of the team leader input control?
Specification: Business Objects 4, web intelligence

No, the input controls will show you all the values that have been retrieved from the database for that dimension, regardless of selections made in other report filters and/or input controls.

Related

How to analyze panel data, by decade and firm id

So heres the background.
I have panel data. 1972-2020.
I have 1 dependent variable (inflation) and 5 independent variables, imp, exp, tra, gro, pro.
I have 10 countries. 5 small and 5 big ones, numbered 1-5 and 6-10.
I want to show the independend variables effect on the dependendt variable, sorted by decade (70,80,90,00,10) for each country. SO the output can tell us how the regression coefficentsenter image description here differs for each country for each decade.

How to create features columns based on values across diff columns

Hi I am trying to do one hot encoding in Orange in order to conduct market basket analysis.
Currently I have transaction data as follows in my CSV:
C#
Items
C1
Apple
Orange
C2
Baby Milk
Apple
Orange
I would like to find out what are the steps that I can do to process the data in orange or other software such that I am able to get this state for my data
C#
Apple
Orange
Baby Milk
C1
1
1
0
C2
1
1
1
Currently when I try to preprocess the data in orange using "continous discrete variables - one feature per line" I get individual feature value columns.
It is not entirely straightforward, but you could concatenate your products with comma or semicolon, pass it to Corpus, apply tokenization based on your concatenation character (comma, semicolon) with a Regex, then use Bag of Words from the Text add-on. I have tried it with Associate add-on, and it seems to work.

Visualizing two sets of data on one map in D3: Is there a way to map two datasets to a range -1 to 1?

I have two csv files containing countries and values that correspond to each country.
The data from CSV 1 denotes the number of times a country has been attacked on their own soil.
The data from CSV 2 denotes the number of times a country has attacked another country abroad.
There is overlap between the two sets of data and I intend to demonstrate values from both data sets in one grey scale range to be shown on a choropleth map.
I have some (obviously) phony data below to demonstrate what I'm working with.
TARGET.csv
country, code, value
Iran, IRN, 5
Russia, RUS, 4
United States, USA, 0
Egypt, EGY, 2
Spain, ESP, 1
ATTACKER.csv
country, code, value
Iran, IRN, 3
Russia, RUS, 9
United States, USA, 4
Egypt, EGY, 0
Spain, ESP, 0
There are more targets than attackers.
I want to ensure that I represent the data accurately, but do not know how I would create a normalized range of values between -1 and 1.
It is my understanding that displaying the data in this way would accurately represent the reality best, but I feel like I may be wrong.
In summation:
1) Am I thinking about this problem properly? Is this even the right way to think about displaying the data?
2) What is the proper language used to describe my question?
I am usually able to figure these things out but I'm stumped with dead-end search queries.
3) How do I make sure that my range is normalized. Notice that USA above appears as the only attacker who has never been a target, Would that make the USA the nearest value to +1, despite Russia's larger number of attacks?
I would appreciate whatever input you all can offer.

Angular.js parse html tags in JSON

Is it possible to parse html tags in a JSON value? Possibly through a filter? I have the following JSON.
{
"title" : "Auto Donation Program",
"shortname" : "auto_donation_program",
"summary": "Donated vehicles find new homes through this program. Recipients are eligible to apply if they have been actively participating at Vineyard Cincinnati or The Healing Center under the guidelines of the program for six months.",
"description" : "<h2>Give your automobile to a new home to help a family in need</h2><p>Please contact Deena Casagrande at (513) 346-4080 Ext. 207 to make arrangements for auto donations. Please do not drop your car off in the parking lot.</p><h2>Tax Benefits</h2><p>It seems that every non-profit these days is encouraging you to donate your vehicle to charity and \"get a tax deduction.\" But there’s a simple distinction between donating your car to The Healing Center versus donating it almost anywhere else.</p><p>As of January 1, 2005, the rules on how much you can write off your taxes were tightened. If the organization sells your car, as most do, you can deduct only the amount they sold it for--and they may sell it for far less than it’s worth. However, if the organization gives your car to someone who will drive it, as The Healing Center does, you can claim full Blue Book value--a significant difference on your taxes. (It’s important to note that when you donate a vehicle, you receive a tax deduction, not a tax credit.)</p><h2>So where does your car end up? </h2><p>Those on the receiving end of The Healing Center’s auto donation program must fill out a detailed questionnaire, meet the eligibility requirements of the program, and be approved by the Benevolence Review Team. Vehicles are given to single parent families or individuals needing transportation for employment or who are enrolled in school to obtain employment.</p>"
}
Displayed in my template as:
<p>{{service.description}}</p>
This worked for me:
<div ng-bind-html="'{{service.description}}' | to_trusted"></div>
Filter
angular.module('app')
.filter('to_trusted', ['$sce', function($sce){
return function(text) {
return $sce.trustAsHtml(text);
};
}]);

SSRS Error - tablix ‘Tablix1’ has a detail member with inner members. Detail members can only contain static inner members

I have a question regarding SSRS reports. It might be related to Grouping but not sure it will solve my problem.
There is letter for customer and he might pass 2- 3 classes. So each customer can have 1, 2 or 3 classes. Now when I do it in the normal way it shows student 1 data 2 times if he passes two classes. I need to see all the classes in one letter for a student.
Here is the letter:
XXX,
Rajagopal, Blair Platinum, India.
This is your certification of appreciation.
Here are the classes you passed
Class1 Botany Course - 132
Class2 Zoology Course - 536
Instead it shows as:
XXX,
Rajagopal, Blair Platinum, India.
This is your certification of appreciation.
Here are the classes you passed
Class1 Botany Course - 132
XXX,
Rajagopal, Blair Platinum, India.
This is your certification of appreciation.
Here are the classes you passed
Class2 Zoology Course - 536
Please help me so that I can see all the classes in one letter.
Answer: I did a subreport for the class 1 class 2 and added it to the main report and it worked
Create a group based on the person and have the rows above the class line in the group header. Set it to have a new page per group.
Then the detail page just has the class section.
You can put any letter sign off in the group footer.