Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I would like some advice on the following subject : right now we have this setup to both trigger externally a task and send custom notifications when everything is done :
1. When the data is refreshed, a file generated by Databricks is sent to the VM where Qlik Sense Enterprise is installed.
2. This trigger some tasks in the QMC, thanks to one task that checks every minute if the file is present in a local folder, and ends in success when it finds it.
3. The file also contains info (months refreshed, etc.) which is then loaded in the Qlik Sense App that sends the notification (via Web Connectors).
We're working on a way to optimise things, and not be dependent on a txt file. I've already read about ways to trigger externally a task (https://community.qlik.com/t5/Official-Support-Articles/Examples-Trigger-a-Qlik-Sense-task-externally/ta-p/1714821, https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/ta-p/1713044, https://community.qlik.com/t5/New-to-Qlik-Analytics/Trigger-Qliksense-task-based-on-external-event-like-Control-M/m-p/1719080), but I can't find a better way for the custom info and notification than with a file for Qlik to read on.
If anyone has suggestions on this subject, that would be very helpful.
Best regards,
Martin.
Hi everyone,
I’m working on a Qlik SaaS Automation and need to convert a JSON file (table) (from Onedrive) into a CSV file. Has anyone successfully done this in Automation? If so, could you guide me on the steps or provide an example? Any advice on how to map the JSON structure to CSV columns would be greatly appreciated!
Thanks in advance!
Miguel.
Hello,
I am working on the expression editor where i have 3 columns on a table each i want to filter by a separate variable (list of string like: AZ104;ERF21 ). For the moment i have that:
The problem is if i apply this, it will try all the possible combination of values inside variables. The goal is to filter the table by a specific triplets (all the values indexed 1 of each variables as a triplet, all the values indexed 2 of each variables as a triplet....etc). Here an exemple of what it my return (in yellow) , so here the Count() need to be 2.
Thanks.
Hi everyone
I am trying to make these two dates fields return the YEAR in which an employee was active? what is the best way to handle the task?
SORTED DESC BELOW
Thank you
https://cbu.uz/en/arkhiv-kursov-valyut/ по этой ссылке я имею курсы иностранных валют в UZS за выбранный период. Но там отсутствуют курсы за выходные и другие праздничные дни.
Как в Qlik Sense Enterprise в Load Editor создать таблицу в котором будут находиться курсы за все дни выбранного периода. (за выходные и другие праздничные дни будут видны курсы предыдущего рабочего дня. предыдущий рабочий день может отличится от текущего рабочего дня на один или нескольких дней)
Спасибо.
Are there any recommendations available for approporiate logging levels for all the different logging functions that can be set in QMC? I have found the support article The Qlik Sense Engine Traffic Log level with the recommendation that Traffic Log Level for Engine is only activated when problems already have been noticed, but surely there's some kind of best practice regarding what other log levels should be active in a system that seem to running just fine?
Naturally the Debug log level should only be active for any type of logging when there is a problem that needs to be investigated, but there are many other logging levels available and a lot of different things that can be logged.
What is a reasonable log level for each logging possibility, so that I get enough interesting system information in the Monitor Apps, but also a reasonable amount of information to discover what has gone wrong (when eventually something happens that shouldn't have happened)? Too much logging is just painful in various ways, but too little logging could turn out to be a painful experience as well...
Any suggestions?
Buenas tardes,
Tengo la siguiente tabla:
ID_CARD |
SENTIDO |
DT_TRANS_DATE_TS |
ID_TRANSIT |
Parámetro |
Escenario2 |
123456 |
Monterrey |
22/01/2024 17:00:01 |
3327297 |
00:46:48 |
108 |
123456 |
Saltillo |
22/01/2024 15:06:58 |
2001268 |
00:46:48 |
205 |
123456 |
Saltillo |
22/01/2024 15:27:28 |
3383712 |
00:46:48 |
208 |
123456 |
Saltillo |
22/01/2024 17:01:48 |
1422788 |
00:46:48 |
206 |
|
|
|
|
|
|
En la tabla se registran los cruces de usuarios en una autopista donde la hora de inicio de un recorrido está dada por el campo DT_TRANS_DATE_TS ylos escenarios son los distintos recorridos por los que se ha trasladado.
Necesito agrupar los cruces en base al sentido y la hora del cruce, en donde si el tiempo entre cruces es menor al campo Parámetro (tiempo de recorrido promedio), se considera que dichos cruces forman parte de un solo recorrido, de lo contrario se considera un solo recorrido.
La forma en que busco agruparlos es creando un campo en el cuál si se cumple la regla del tiempo, devuelva el ID_TRANSIT del cruce inicial, de lo contrario que deje el mismo ID_TRANSIT. Esto intenté hacerlo con una dimensión calculada mediante la suguiente fórmula:
=iF(Aggr(Min(DT_TRANS_DATE_TS),ID_CARD, SENTIDO) or (DT_TRANS_DATE_TS - Aggr( Above(TOTAL DT_TRANS_DATE_TS,1),ID_CARD, SENTIDO)>Parámetro ) ,ID_TRANSIT,Aggr( Above(TOTAL ID_TRANSIT,1),ID_CARD, SENTIDO))
Pero el dato no es el esperado como se puede ver en las columnas Resultado actual vs Expresión, donde la columna expresión me dá el dato correcto pero no en la dimensión calculada que es donde la requiero para usarla en futuras fórmulas para agrupar datos.
ID_CARD |
SENTIDO |
DT_TRANS_DATE_TS |
ID_TRANSIT |
Parámetro |
Escenario2 |
Concat(Escenario2) |
Resultado actual (Dimensión calculada) |
Expresión |
123456 |
Monterrey |
22/01/2024 17:00:01 |
3327297 |
00:46:48 |
108 |
108 |
3327297 |
3327297 |
123456 |
Saltillo |
22/01/2024 15:06:58 |
2001268 |
00:46:48 |
205 |
205 - 208 |
2001268 |
2001268 |
123456 |
Saltillo |
22/01/2024 15:27:28 |
3383712 |
00:46:48 |
208 |
205 - 208 |
- |
2001268 |
123456 |
Saltillo |
22/01/2024 17:01:48 |
1422788 |
00:46:48 |
206 |
206 |
3327297 |
1422788 |
|
|
|
|
|
|
|
|
|
La fórmula de la expresión que me dá el dato correcto es la siguiente:
Expresión:
=Count(Aggr( Concat(DISTINCT Escenario2,'-'),ID_CARD ,SENTIDO))
También entiendo que se podría obtener el dato desde el script pero no lo he conseguido tampoco.
Por otra parte, también necesito concatenar los escenarios de la manera en que se muestra en la columna Concat(Escenario2), no he podido concatenarlos correctamente.
Espero me pueda ayudar
Muchas gracias
Alejandro de la Garza
Qlik Compose for Data Warehouses
I created a new repo and I have added the git version credentials on Qlik compose but when I try to commit the first time am getting this:
COMPOSE-E-GITERR, Failed to push to the remote repository. Verify that your Git login credentials are correct. Error: Cannot push because a reference that you are trying to update on the remote contains commits that are not present locally.
How can I push to a new repo and how can I clone to the directory?
Qlik Compose for Data Warehouses
i have been working on this project for months now and after i finalized most of the data warehouse my client noticed that all names that have Arabic letters shows as "???? ???" and when i was investigating the issue i found out that nvarchar is not supported in compose. is there a way that i can show the Arabic names?
Hi Team,
I am getting the error "RetCode: SQL_ERROR SqlState: 22000 NativeError: 100144 Message: Invalid UTF8 detected in string '1000xEF'File 'a015ffd4_cef8_b042_a6c3_9230a7b23386/0/CDC00000001.csv.gz', line 23230, character 1210" in Qlik.
Could you please guide to resolve this error?
Thanks in advance.
Regards,
Nagamanickam K
Pencil in our most magical conference yet: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL
Fuel your data and AI journey with the right services, delivered by our experts.
With Qlik Answers™, get personalized, GenAI-driven answers from unstructured data, so you can make decisions with confidence. Learn how in our product roadmap keynote and demo.
Browse our helpful how-to's to learn more about navigating Qlik Community and updating your profile.
Your journey awaits! Join us by Logging in and let the adventure begin.
Qlik enhances decision-making with high-speed insights, as Mayborn Group integrates data from various functions across their global operations, gaining a competitive edge in the childcare industry.
Nortera leads agricultural manufacturing analytics and automation with Qlik, reducing short-shipment rates and annual savings in water consumption.
Qlik Data Integration transforms Airbus' aircraft production, leading to over 150 replication tasks and informing more efficient analysis.
Join one of our Location and Language groups. Find one that suits you today!
A private group is for healthcare organizations, partners, and Qlik healthcare staff to collaborate and share insights..
Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。
Welcome to the group for Brazil users. .All discussions will be in Portuguese.
Hear from your Community team as they tell you about updates to the Qlik Community Platform and more!