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: 
rcandeo
Creator III
Creator III

How can I make this security access?

I´ve configured a security based in  a section acces and it works, but I wanna make a selections using *. How can I do that?

Section Access;

LOAD * INLINE [

    ACCESS, NTNAME, SEG-TIPO

    ADMIN, ADMINISTRATOR, ALL

    USER, USER1, SEC1

    USER, USER2, SEC2

    USER, USER3, SEC3

    NONE

];

Section Application;

Star is *;

LOAD * INLINE [

    SEG-TIPO, TYPE

    SEC1, HOUSE*

    SEC2, HOUSEA

     SEC3, HOUSEB

    ALL, *

];

USER1 must see HOUSEA + HOUSEB

USER2 must see HOUSEA

USER3 must see HOUSEB

2 Replies
erichshiino
Partner - Master
Partner - Master

Hi, rcandeo

You can try this:

LOAD * INLINE [

     SEG-TIPO, TYPE

     SEC1, *

     SEC2, HOUSEA

      SEC3, HOUSEB

     ALL, *

];

or

LOAD * INLINE [

     SEG-TIPO, TYPE

     SEC1, HOUSEA

   SEC1, HOUSEB

     SEC2, HOUSEA

      SEC3, HOUSEB

    ALL, *

];

Hope this helps,

Erich

rcandeo
Creator III
Creator III
Author

Imagine that I have dozes of records beginning with HOUSE, and hundreds with other words. That´s why I need to user HOUSE*.

Any idea?