Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ashmitp869
Creator II
Creator II

help required in section access

Hi there,

If anyone can help me with the section access.

I have to implement this logic  like marked in bold

Section Access;

NTNAME,ACCESS,SecuredOrgAccessAttribute

1, USER, CPCS&SAS

1, USER, SAS

-- ANY Other clinics

LOAD DISINCT NTNAME,Organisation as SecuredOrgAccessAttribute

where securorgatt <> 1;

Section Application;

 

Data model -

ashmitp869_0-1655423960636.png

I tried this script -

UserCustomerAccess:
LOAD DISTINCT
NTNAME,
ACCESS,
ACCESSDETAIL,
ACCESSDETAIL as SecuredOrgAccessAttribute
RESIDENT UserList;
right join (UserCustomerAccess)
Load distinct SecuredOrgAccessAttribute,[Ward/Location] resident WardwithFlag
where securorgatt <> 1

;

Final:
LOAD DISTINCT
NTNAME,
ACCESS,
ACCESSDETAIL,
ACCESSDETAIL as SecuredOrgAccessAttribute
RESIDENT UserList;
Concatenate(Final)
Load
NTNAME,
ACCESS,
ACCESSDETAIL,
[Ward/Location] as SecuredOrgAccessAttribute
Resident UserCustomerAccess;

Drop table UserCustomerAccess;

Labels (1)
0 Replies