Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I need to build a parameterized load script where the parameters will be fetched in a query to a webservice.
The result of this query webservice is in table format.
I'm kinda lost and not knowing where to start. Could someone pass me some tips?
Thks.
Could someone help me?
Well...this could either be really complicated or very simple. When you enter the URL into a browser, you get the table returned? If so, and the URL is static, then simply add the resulting table through the wizard by opening the URL. On the other hand, if the URL is dynamic, then you need to concatenate the URL string using variable values. First, go through the wizard with a static URL just so a template is generated. Then replace the URL string after "FROM" with the concatenation of the string you created from your variables.
Example: mystring = 'http://www.test.com/' & $(vMonth);
Regards,