Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 adiarnon
		
			adiarnon
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
 adiarnon
		
			adiarnon
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		sorry. bat i didnt understand your solution
 
					
				
		
 arthur_dom
		
			arthur_dom
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
		
			adiarnon
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		tnx!!
 sela
		
			sela
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
		
			arthur_dom
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		First, verify if the variable is already created, second if it haven't triggers with it (changing or cleaning the value)
