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

Section Access

Hi Friends ,

I need to implement section access like user level , example script i used in the application

Section Access;

LOAD * INLINE [

    ACCESS, USERID

   Admin,Janardhan

   User,Jana

];

Section Application;

And what are the steps i need to taken care in qliksense server.

Briefly can anyone explain.

Thanks in Advance

Janardhan

2 Replies
Not applicable

Hi Janardhan

I have got this working in QlikView. I don't have QlikSense so I think the theory is still the same.

I actually store my section access information in an Excel file and load that into the QV Document.

My spreadsheet looks a little like this:

sectionaccess.JPG

and the scripting looks like this:

SECTION Access;
Directory;
LOAD NTNAME,
ACCESS
FROM
[..\Data\chepsec.xlsx]
(
ooxml, embedded labels, table is security);

SECTION Application;

This only allows users in my spreadsheet to see the report and access it. Hope this helps.

Steve.

Not applicable

Hi Janardhan

Sorry just look at your post again. I think I misunderstood your question. In QlikView I didn't need to make any changes to the QVServer everything is taken care of in the script and spreadsheet.

Steve