Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Linguagem e acesso - Language and Access

Olá!

Eu tenho algumas planilhas que carrego no Qlik Sense  com traduções das frases, mas quando atribuo outra linguagem diferente do inglês para o meu usuário dá erro de acesso negado na app.

Alguém pode me ajudar.

Hi!

I have some Excel spreadsheet that i uploaded in Qlik Sense with traduction of the sentences, but when i assign other language different of English for my user, showed the error "access denied" in app


Anybody help me?

8 Replies
agigliotti
Partner - Champion
Partner - Champion

could you please explain better what is your problem?

Anonymous
Not applicable
Author

Hi!

In my Load Data Editor , I have this code:


Section Access;
USER_LANGUAGE:
LOAD
    "USERID",
    LANGUAGE
FROM [lib://I18n /user_configuration.xlsx]
(ooxml, embedded labels, table is Language);

USER_COMPANY:
LOAD
    "USERID",
    COMPANY
FROM [lib://I18n /user_configuration.xlsx]
(ooxml, embedded labels, table is Company);

USER_SITE:
LOAD
   "USERID",
    SITE
FROM [lib://I18n /user_configuration.xlsx]
(ooxml, embedded labels, table is Site);

USER_TEMP:
LOAD 'USER' as "ACCESS", * RESIDENT USER_LANGUAGE;
JOIN
LOAD  * RESIDENT USER_COMPANY;
JOIN
LOAD * RESIDENT USER_SITE;

USERS:
LOAD
  "ACCESS",
  "USERID",
  LANGUAGE,
  COMPANY & '-' & SITE AS COMPANY_SITE
RESIDENT USER_TEMP;

DROP TABLE USER_LANGUAGE;
DROP TABLE USER_COMPANY;
DROP TABLE USER_SITE;
DROP TABLE USER_TEMP;


Section Application;

In my excel, i have this datas:

User                                      Language

Domínio/f.borges                  PT

When i used PT for portuguese language, created a row for each language.

When i used EN for english languade, created a row only english language.

Tks for your reply.

agigliotti
Partner - Champion
Partner - Champion

first of all use uppercase for all fields name and fields values in section access.

Anonymous
Not applicable
Author

Ok. Tks for your help.

And the second?

agigliotti
Partner - Champion
Partner - Champion

after you made all changes reload the app and try logging with the same user.

Anonymous
Not applicable
Author

Tks.

The language of server is English.

Can be  it?

Anonymous
Not applicable
Author

Será que pode ser porque a linguagem do servidor está em inglês?

Anonymous
Not applicable
Author

I put the user as ADMIM and worked.

Tks a lot!