Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

passing parameters in url

HI,

im using th ie plugin.

i need to pass variable as parameters in the url

i know how to pass one variable ->http//......qvw?v_year=2013

but i dont know what the syntax for more than one variable

can you help?

adi

14 Replies
adiarnon
Creator III
Creator III
Author

sorry. bat i didnt understand your solution

arthur_dom
Creator III
Creator III

create a new variable like vParameters, on vParameters pass all the parameters with a delimiter like:

qvp://servername/document.qvw?vParameters=1|jan|2014|Test


and on the variables use the subfield function to make input values, like:


vProductCode= subfield(vParameters,'|', 1) ;

vMonth= subfield(vParameters,'|', 2) ;

vYear= subfield(vParameters,'|', 3) ;

vPlace= subfield(vParameters,'|', 4) ;




adiarnon
Creator III
Creator III
Author

tnx!!

sela
Partner - Contributor II
Partner - Contributor II

Hi,

I try to pass variable on URL like your example (http//......qvw?v_year=2013),

But it didn't worked.

What is the exect syntax for passing one variable?

Thanks, Sela

arthur_dom
Creator III
Creator III

First, verify if the variable is already created, second if it haven't triggers with it (changing or cleaning the value)