Skip to main content
Announcements
Qlik Community Office Hours, March 20th. Former Talend Community users, ask your questions live. SIGN UP
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QlikSense Section Data Access

hi

i want implement Section Access into QlikSense Look Like Qlikview.

please help me

When the user is logged in, only see self data

look like data reduction in QMC(Qlikview Management Console)

LOAD * INLINE [
ACCESS, NTNAME, DCODE
Admin, UL\UL_QVUSER, *
User, ULKBLQLIKVIEW01\Administrator, *
User, UL\13000, *
User, UL\17832, HIT

         User, UL\59, HCO
         User, UL\13428, HCO
]
;


LOAD * INLINE [
DCODE, TITLE
  HIT,HIT150214

  HCO,HCO987546

];


4 Replies
mdmukramali
Specialist III
Specialist III

Dear Babak,

               Section Access;

LOAD * INLINE

[
ACCESS, NTNAME, DCODE
ADMIN, UL\UL_QVUSER, *
USER, ULKBLQLIKVIEW01\Administrator, *
USER, UL\13000, *
USER, UL\17832, HIT

        USER, UL\59, HCO
       USER, UL\13428, HCO
      ]
;

          SECTION Application;

LOAD * INLINE [
DCODE, TITLE
  HIT,HIT150214

  HCO,HCO987546

];


note:  Section Access will not work in Qlik Sense Desktop.


Anonymous
Not applicable
Author

OK "Section Access will not work in Qlik Sense Desktop."

But Solution IN Qliksense Server (QMC) OR HUB 

Define the data limit

mdmukramali
Specialist III
Specialist III

Dear,

it will work in QMC

pathiqvd
Creator III
Creator III

Hi,

      Give USERID in place of NTNAME

  Section access will work in qliksense. You need to give section access in Hub by using section access and after you need to give stream access  then it will work.

Step1:

          Section Access;

LOAD * INLINE

[
ACCESS, USERID, DCODE
ADMIN, UL\UL_QVUSER, *
ADMIN, ULKBLQLIKVIEW01\Administrator, *
ADMIN, UL\13000, *
ADMIN, UL\17832, HIT

        ADMIN, UL\59, HCO
       ADMIN, UL\13428, HCO
      ]
;

          SECTION Application;

LOAD * INLINE [
DCODE, TITLE
  HIT,HIT150214

  HCO,HCO987546

];

Step2:- Create one stream and publish app into that stream and give access it will work.

Before you need to give user access or login access in License and Tokens

Regards,