Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
rodward23
Partner - Contributor II
Partner - Contributor II

Section Access en Qlik Sense

Que tal a todos

estoy buscando la forma de agregar seguridad utilizando el NTNAME , en una app desarrollada en Qlik Sense, pero leyendo algunos post mencionan que no se puede utilizar esta opción en Sense.

Me podrian aclarar este tema y si es posible ayudarme con algunos ejemplos de como agregar seguridad en una app de QS.

1 Solution

Accepted Solutions
NadiaB
Support
Support

Hola @rodward23 

 

Es correcto, en Qlik Sense no existe NTNAME , en su lugar se utiliza UserID, por ejemplo:

Section Access;
LOAD * INLINE [
ACCESS, USERID, REDUCTION
ADMIN, INTERNAL\SA_SCHEDULER, *
ADMIN, DOMAIN\ADMINISTRATOR , 1
USER, DOMAIN\USER1 , 2
];


Section Application;
T1:
LOAD *,
NUM AS REDUCTION;
LOAD
Chr( RecNo()+ord('A')-1) AS ALPHA,
RecNo() AS NUM
AUTOGENERATE 3;

En Qlik Help se pueden encontrar mas detalles:

 

https://help.qlik.com/en-US/sense/February2019/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/m...

 

Saludos.

 

 

Don't forget to mark as "Solution Accepted" the comment that resolves the question/issue. #ngm

View solution in original post

4 Replies
NadiaB
Support
Support

Hola @rodward23 

 

Es correcto, en Qlik Sense no existe NTNAME , en su lugar se utiliza UserID, por ejemplo:

Section Access;
LOAD * INLINE [
ACCESS, USERID, REDUCTION
ADMIN, INTERNAL\SA_SCHEDULER, *
ADMIN, DOMAIN\ADMINISTRATOR , 1
USER, DOMAIN\USER1 , 2
];


Section Application;
T1:
LOAD *,
NUM AS REDUCTION;
LOAD
Chr( RecNo()+ord('A')-1) AS ALPHA,
RecNo() AS NUM
AUTOGENERATE 3;

En Qlik Help se pueden encontrar mas detalles:

 

https://help.qlik.com/en-US/sense/February2019/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/m...

 

Saludos.

 

 

Don't forget to mark as "Solution Accepted" the comment that resolves the question/issue. #ngm
karla_gonzalez
Partner - Contributor II
Partner - Contributor II

Nadia, buenas tardes, dispulpa me manda el siguiente error sabes la razón.Error_Section_Access.png

jp_golay
Partner - Creator II
Partner - Creator II

You can now test our new Product SAM that will fully automate Section Access Generation product.

It is no longer necessary to maintain a section access list in Excel or in your database, SAM offers you a complete web application that will secure all your data accesses.


A user can request access to an application with a simple form. Then administrators get notified and can assign the RESTRICTIONS and OMITS from the proposed fields values. User access are generated from on a single line per user, no need to generate tedious cartesian products and include all values to get a "*" value working correctly .

Moreover SAM is able to generate an automatic access section from the authorizations of the QMC, and Reverse Engineer existing section Access a time saving for simple cases.

More details on our website or contact me at jp.golay@ebiexperts.com

jp_golay_0-1639987982182.png

 

 

 

 

ebiexperts CTO
With WIP, Control everything!
Qlik Sense, QlikView and NPrinting Source control, Versioning and Deployment, Agile Lifecycle Management
amonjaras
Partner - Creator II
Partner - Creator II

NTNAME funcionaba para QlikView. Qlik recomienda que usemos USERID en su lugar en Qlik Sense.
USERID debe incluir el dominio así: DOMINIO\USUARIO