Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Gowtham174
Creator
Creator

Section access

Hi All,

From the below script User DF should have access only for DOMESTIC_FOREIGN but it will show for all other flight type.


Can you please help me to understand section access in details with the example.


Section Access;
LOAD * INLINE [
  ACCESS, USERID, PASSWORD, FLIGHTTYPE
  ADMIN, ADMIN, ADMIN123, *
  USER, DF, DF123, DOMESTIC_FOREIGN
  USER, DU, DU123, DOMESTIC_US
  USER, IF, IF123, INTERNATIONAL_FOREIGN
];
Section Application;

LOAD * INLINE [
  Flight Type, FLIGHTTYPE
  "Domestic, Foreign Carriers", DOMESTIC_FOREIGN
  "Domestic, US Carriers Only", DOMESTIC_US
  "International, Foreign Carriers", INTERNATIONAL_FOREIGN
  "International, US Carriers Only", INTERNATIONAL_US
];

Thanks,

Gowtham

1 Solution

Accepted Solutions
PrashantSangle

check document property > Opening > Initial Data Reduction Based on Section Access > Strict Exclusion must tick

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

2 Replies
PrashantSangle

check document property > Opening > Initial Data Reduction Based on Section Access > Strict Exclusion must tick

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
jonathandienst
Partner - Champion III
Partner - Champion III

Remove the quotes from the inline table load. With the quotes like that, FLIGHTTYPE is not being populated so the SA is not working.

LOAD * INLINE [
  Flight Type, FLIGHTTYPE
  "Domestic, Foreign Carriers", DOMESTIC_FOREIGN
  "Domestic, US Carriers Only", DOMESTIC_US
  "International, Foreign Carriers", INTERNATIONAL_FOREIGN
  "International, US Carriers Only", INTERNATIONAL_US
];

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein