Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 rafael5958
		
			rafael5958
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi, I have this section im my qlikview app - Desktop:
Section Access;
LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*
];
Section Application;How can I add or change an user/password without have to reload all my data again? Tried just save and exit but the new password didnt apply.
 rafael5958
		
			rafael5958
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		found it.
Using replace and partial reload.
Section Access;
replace LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*
    ADMIN, paul, 5555,*
];
Section Application; rafael5958
		
			rafael5958
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		found it.
Using replace and partial reload.
Section Access;
replace LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*
    ADMIN, paul, 5555,*
];
Section Application;