Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
thabo2g5
Contributor III
Contributor III

Qlikview Access Point

Hi everyone

I need your help I have 3 different environments  ( DEV , UAT and PROD) so what I want to do is to pint to a qlikview model on access point based on which environment the qlikview model is at. for example let say I have abc.qvw in DEV environment then I move it to UAT environment  I want that the access point URL reflect this changes using a button .

UAT access point link  = http://qvuat/QvAJAXZfc/opendoc.htm?document=DocumentName.qvw&lang=en-US&host=servername

PROD access point Link = http://qvprod/QvAJAXZfc/opendoc.htm?document=DocumentName.qvw&lang=en-US&host=servername 

 

thank you in advance

 

Labels (1)
1 Solution

Accepted Solutions
thabo2g5
Contributor III
Contributor III
Author

I solved this problem by using computer name() system function to identify different serves for example uat server is ### and prod server is **** so what I did I used an if statement to find out which environment is it e.g if ( computername ()= ###,uat , if (computername ()=***, prod, dev))
Hope this help someone else

View solution in original post

1 Reply
thabo2g5
Contributor III
Contributor III
Author

I solved this problem by using computer name() system function to identify different serves for example uat server is ### and prod server is **** so what I did I used an if statement to find out which environment is it e.g if ( computername ()= ###,uat , if (computername ()=***, prod, dev))
Hope this help someone else