Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
varunreddy
Creator III
Creator III

Section Access

Hi Guys,

I am trying to implement Section Access. I have divided application into

Loader - Which is used to load Data

Transformer - Transformations will be done

Application - Binary load of transformer.

My question is where should I implement section access?

Transformer or Application?

Now I have it in Transformer. But it is not working

Code Used:

Section Access;

LOAD ACCESS,
NTDOMAIN,
[NT USERID],
NAME
FROM
[$(vPath)\DQIM_AllIssues_History - Master_Post.xlsx]
(
ooxml, embedded labels, table is Sheet2);

Data Set:   

   

ACCESSNTDOMAINNT USERIDNAME
ADMINADMINADMINADMIN
ADMINHBEUGB-SVC-QVServiceGB-SVC-QVService
ADMINHBEUHBEU-GBMUTQVSADMHBEU-GBMUTQVSADM
ADMINHBEUHBEU-GBMUTL-QVImpHBEU-GBMUTL-QVImp
ADMINHBEUHBEU-GBMUTL-QV-UATHBEU-GBMUTL-QV-UAT
ADMINHNAH43917679Varun Reddy Kancharla

Can any one guide me, what is going wrong?

Cheers!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

I think it's not a primary question of using section access in Transformer or Application, but to use the correct field names for section access. Please check the HELP (Section access system fields) or

Introduction to Section Access

You should use a field

NTNAME

with values like

HBEU\GB-SVC-QVService

If you are using section access in the Transformer and binary load this QVW, section access will be inherited when you open the application QVW.

View solution in original post

4 Replies
swuehl
MVP
MVP

I think it's not a primary question of using section access in Transformer or Application, but to use the correct field names for section access. Please check the HELP (Section access system fields) or

Introduction to Section Access

You should use a field

NTNAME

with values like

HBEU\GB-SVC-QVService

If you are using section access in the Transformer and binary load this QVW, section access will be inherited when you open the application QVW.

Mark_Little
Luminary
Luminary

I agree with Swuehl point.

Just to expand further i would make sure the name are in capitals to as this does cause issues to. 

so

HBEU\GB-SVC-QVSERVICE

I would also normally put it in the top level, but more just the way I have always approached it, right or wrongly.

Mark

syukyo_zhu
Creator III
Creator III

Hi,

Swuehl is correct. you should use section access in Transformer.

And don't forget SECTION Application at the end of your section access;

varunreddy
Creator III
Creator III
Author

Hi Sweul,

I used NTNAME, but still it is not working.

The example I am trying:

I want the dashboard to be seen only by few users. So, I tried to apply section access to my application using NTNAME and tested. My team mate can open the file, even if his NTNAME is not listed.

Can you please guide me?