Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
scripted datasource with dynamic parameter values
birtq
Hi
is it possible to implement something like this(dynamically) ,as and when the value of first parameter changes the list of second parameter would also change.
exactly this thing in the attached script:
if( params["l1"].value=="A")
{
params["lp"].value=row["A"]
}
if (params["l1"].value=="B")
{
params["lp"].value=row["B"]
}
if (params["l1"].value=="C")
{
params["lp"].value=row["C"]
}
Thanks and Regards
birtq
Find more posts tagged with
Comments
mwilliams
birtq,
Can you explain more of what you're wanting to achieve? What will the data look like and what do you want the output to look like?
JasonW
take a look at your example with my mods. I use two datasets and a scripted ds input parameter with a cascaded report parameter.
birtq
Hi Michael,
Actually what i wanted to have is :for example if parameter listbox 1 contains (A B C D) on selecting A in parameter listbox 1, parameter listbox 2 would display only (B C D) ..Similarly on selecting on selecting B in parameter listbox 1, parameter listbox 2 would display only (A C D) ...SO ON!! where the datset is being created using scripted datasource.
Though i have got the solution and its working fine.:-)
Thankyou
birtq
birtq
Hi Jason
Its working perfectly.Now i am getting exactly that i was looking for .
Thanks a lot!!!:-)
Regards
birtq