Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have Qliksense app and it is having dev environment.
Now i want to move UAT and then after that moved in to Prod.
Each environment i will change path location evry time when i wll move the app.
I don't want change every time. If i move any environment then anutomacally run the app dynamically like if my app is in dev then dev path location will take and if my app is in UAT or Prod then will take UAT or prod path location.
Please suggest me how to take varibles for this one.
Thanks & Regards,
Lakshman
Hello,
You can use script something like below to check on which server the task is running. QVD connections will be used accordingly.
Let vServerName = ComputerName();
if
vServerName = 'Server1' then
Set vQVD_connection=Lib:\\Path
elseif vServerName = 'Server2'
then
Set vQVD_connection=Lib:\\Path
else
Set vQVD_connection=Lib:\\Path
end if;
Thanks,
Ashutosh