Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

username accesspoint

i want just get the values of username and password while opening(on open action) the application in accesspoint....and i should create a txt file to write a username and password and it should be placed in a common path ex:E:\username.txt....its worked fine in local machine while i opening the application..but its not wirte a log file while open the application in accesspoint...

pls help

1 Reply
er_mohit
Master II
Master II

use this code in script and then reload after that close your application and then reopen it....

SECTION Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD

    ADMIN, test1, password

    USER, test2, password

];

Section Application;

hope it heps you