Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
srchagas
Creator III
Creator III

Session Acess Qlik vs Sense

Hi Guys

I have one Aplication whith Session Acess um Qlikview and i Load Binary for QlikSense,, when i try read in QlikSense i have error because Sense don't have Ntname just userId, if i change to UserID Qlikview give me a error um Qlikview user have put user and passowrd ( we y use AD authentication)

Someone Have this  problem and have a solution ?

thx

1 Solution

Accepted Solutions
srchagas
Creator III
Creator III
Author

Hi

Thx for reply

I solved this problem using * in Session acess with the code bellow (In Qlikview App)


LOAD * INLINE[
ACCESS, USERID , NTNAME,
ADMIN, *,  Lalalalal
ADMIN, *,  asdsadasdasda
ADMIN, *,  aasasasa
ADMIN, *,  asdasdasdasdad
ADMIN, *,  fafadfadfafaf
ADMIN, *,  asdfefgsgsgsaefsd
]
;



That way, Qlikview  using de correct session acess and Sense, i have security for Steam and Token, so it will work.

View solution in original post

4 Replies
MK9885
Master II
Master II

Section Access in Qlik view is tiny bit different to section access in QlikSense.

In Qlikview you'll use Service Account to run in QMC but in Sense you'll use Internal Scheduler.

If you using same AD for both Qlikview and Qlik Sense I guess it should work but my suggestion is remove the Section Access script from your Binary load and do a new section access in Qlik Sense Instead.

srchagas
Creator III
Creator III
Author

Hi

Thx for reply

I solved this problem using * in Session acess with the code bellow (In Qlikview App)


LOAD * INLINE[
ACCESS, USERID , NTNAME,
ADMIN, *,  Lalalalal
ADMIN, *,  asdsadasdasda
ADMIN, *,  aasasasa
ADMIN, *,  asdasdasdasdad
ADMIN, *,  fafadfadfafaf
ADMIN, *,  asdfefgsgsgsaefsd
]
;



That way, Qlikview  using de correct session acess and Sense, i have security for Steam and Token, so it will work.

MK9885
Master II
Master II

Yes, it should work if you have Stream Rule applied

or you can also give

Star is *;

LOAD * INLINE[
ACCESS, USERID , NTNAME,
ADMIN, *,  Lalalalal
USER1, *,  asdsadasdasda
USER2, *,  aasasasa
USER3, *,  asdasdasdasdad
USER4, *,  fafadfadfafaf
USER5, *,  asdfefgsgsgsaefsd
]
;


Star is *; will take all values from Users and Admin will see everything.

But I think your code should work as well.

srchagas
Creator III
Creator III
Author

Yes

I use Star i forgot to wrote here