Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
The official "App Analyzer" installed and updated by the Monitoring App Automation is not reloading anymore.
The following error is shown:
Error: Unexpected token: ')', expected one of: 'OPERATOR_PLUS', 'OPERATOR_MINUS', 'OPERATOR_MULTIPLICATION', 'OPERATOR_DIVISION', 'OPERATOR_STRING_CONCAT', 'like', 'and', ...
Since the "App Analyzer" is a dashboard maintained by you, I kindly ask for your support.
I have a question regarding the following option when using SQL Server as a source endpoint:
Reference:
[SQL Server Source Endpoint Advanced Properties]
https://help.qlik.com/en-US/replicate/May2023/Content/Replicate/Main/SQL%20Server/SQLServerDBSource_AdvProps.htm#ar_sqlserverds_1727505754_1669928
-Prevent truncation of unread changes from TLOG
-Start transactions in the database
My understanding is that this feature prevents the truncation of active transaction logs by executing transactions against an internal table (attrep_truncation_safeguard) in the source database while unread logs are being processed/read.
Based on this understanding, could you please clarify the following two questions?
1. Release Timing of Internal Transactions
At which of the following timings (①–③) is the internal transaction issued by this feature released? If it is none of these, please let us know the exact timing.
① Upon completion of log reading via fn_dblog
② Upon completion of log parsing/filtering within Qlik Replicate (identifying changes that need to be propagated to the target)
③ Upon completion of data propagation to the target database
2. Methods for Explicitly Releasing Internal Transactions
Is our understanding correct that stopping all tasks using this source database as an endpoint is a valid method to explicitly release these internal transactions?
If there are any other methods to explicitly release them, please let us know.
Thank you for your assistance and support.
Best regards,
Hironori Fujihira
Mikael is a familiar face in the Qlik Community for those who are on it often, regularly contributing through insightful questions and helpful responses to other members. He is based in Halle, near Brussels, Belgium, and he has been a part of the community for over ten years now.
As a Business Intelligence Coordinator at AZ Sint-Maria Halle, a local hospital, Mikael’s work combines data and real-world decision making. His role centers around turning operational, clinical, and financial data into meaningful insights, on dashboards in Qlik, so that his colleagues can better understand activity, performance, and processes across the hospital. He enjoys “digital transformation projects, process improvement, and finding practical ways to make complex data easier for non-technical audiences.”
Mikael’s journey with Qlik began during his time at Agilos, a Belgian company that specialized in business intelligence and data analytics. He expressed how “that experience gave me a strong foundation in Qlik and helped shape the way I look at data: not just as reports or numbers, but as practical tools that support better decisions.”
He values the Qlik Community because of the quality of learning that it offers. It is a place to find innovative ideas, learn from real problems that others are solving (sometimes problems he did not even know he had yet), and discover approaches he may not have considered on his own. Staying connected also helps him keep up with the latest Qlik news, product updates, and tips from people using Qlik in different environments. Mikael does not only stay up to date on the platform, but he contributes to discussions and offers his insights.
Outside of work, Mikael enjoys spending time with his family, walking his dog, and playing padel. All these things help him “disconnect, stay active, and recharge.”
Mikael, thank you for your continued contribution and engagement in the Qlik Community. Please join us in celebrating Mikael as our July 2026 Featured Member and leave a comment below!
Hi All,
Can we read Windows environment Variable in Qlik Sense script or in QVS files during app reload ?
Our aim would be to use same script across various Qlik Sense environment . If we are able to to read then we will take decision based on this variable values and switch between logic in reload script.
Qlik Sense version: May 2022 Patch4
Thanks in Advance !!
Aniket
The new Content Monitor loads from the APIs and logs to present key metrics on the content, configuration, and usage of your platform, allowing administrators to understand the evolution and origin of specific behaviors of the platform.
This new monitoring app comes pre-installed with the latest version (November 2025 onwards) of Qlik Sense Enterprise on Windows.
If you are running previous versions of Qlik Sense Enterprise on Windows, the Content Monitor is also available on Qlik's Downloads page here: Content Monitor (download page) - note, this must be manually installed and a weekly reload is recommended.
I'm not sure if this is the correct forum, but I'll give it shot. We are moving to Qlik Cloud from QlikView. I am attempting to create a custom theme, which does utilize a CSS file. I have been able to figure out the few things we need in a theme, but have stumbled on customizing a tab container. I want to change the tab background for the selected and unselected tabs, but this code does not work. This is my first exposure to CSS/JSON so I don't know what is keeping it from working. Any suggestions would be appreciated.
My JSON code:
{
"_inherit": true,
"_id": "custom-image-theme",
"name": "Custom Background Theme",
"description": "App theme featuring a global sheet background image.",
"type": "theme",
"version": "1.0.0",
"customStyles": [
{
"cssRef": "theme.css",
"classRef": "custom-theme"
}
],
"_variables": {
"@objectBackground": "#FFFFFF"
},
"backgroundColor": "@objectBackground",
"object": {
"backgroundColor": "@objectBackground"
}
}
My CSS code:
/* 1. Global font configuration
.qv-object * {
font-family: 'Helvetica Neue', Arial, sans-serif !important;
}*/
/* 2. Customizing sheet backgrounds and structures */
.qvt-sheet, .qv-panel-sheet {
background-image: url("QlikSense_SheetBackground.jpg") !important;
background-size: 100% 100% !important;
background-repeat: no-repeat;
background-position: top left;
}
/* 3. Main header and top-bar formatting */
#sheet-title.sheet-grid:after {
content: "";
display: block;
height: 30px; /* Adjust height to fit your logo */
width: 200px; /* Adjust width to fit your logo */
background-image: url('SMClogo285blue.png');
background-repeat: no-repeat;
background-size: contain;
background-position: left center;
position: absolute;
left: 20px; /* Adjust to move logo left or right */
top: 50%;
transform: translateY(-50%);
}
/* 4. Right-align the sheet title text */
.qv-object-header, .sheet-title-text {
text-align: right !important;
justify-content: flex-end !important;
font-size: 30px !important;
font-weight: bold !important;
color: #0071CE !important;
}
.qv-object .qv-object-title {
background-color: #FFFFFF !important;
padding: 8px 12px !important;
}
/* 5. Target the title text globally across standard visualization cards */
.qv-object-title .qv-object-title-text {
color: #000000 !important;
font-family: 'Helvetica Neue', Arial, sans-serif !important;
font-size: 16px !important;
font-weight: normal !important;
}
/* 6. Styling for the standard, unselected container tabs */
.qv-object-nav .tab-container .tab {
background-color: #b0afae !important;
color: #333333 !important;
}
/* Styling for the ACTIVE / SELECTED tab background color */
.qs-container .qsc-tab.active {
background-color: #0076ce !important; /* Set your hex color here */
color: #ffffff !important; /* Text color for active tab */
border-bottom: 2px solid #005699; /* Optional bottom indicator line */
}
Thanks in advance!
Hello
I have a problem with a client who has disabled webSockets, so no access to the Qlik Sense hub. He talks to me about a "Long polling" alternative.
Is there any alternative to access the hub without enabling webSockets?
Hello everyone,
Lately, I’ve been seeing recurring errors in various logs with different error messages from the Qlik Gateway.
For example, I have the following error: DirectAccess-2012:
Connector Connections:xxx not found (Requested endpoint could not be provisioned due to failure to acquire a load slot: Unable to get response from Gateway. Please check that the connection is set to a currently registered Gateway. (DirectAccess-2012)
However, I can’t find any information about this one, so I’m unable to take any action. Is there a complete overview of the error codes available somewhere?
I can’t find anything on the help page, and while the version history lists some of them, it doesn’t cover everything.
Thanks.
Join Qlik Support's office-hours, recorded live, where our experts answer your questions and give more insight on Qlik Cloud Administration.
Questions:
Resources:
Did we answer your question? Let us know by clicking the like button!
Click here to see video transcript
See why Qlik was named a Leader in the 2026 Gartner® Magic Quadrant™ for Analytics and Business Intelligence Platforms
Walk through six new AI capabilities now generally available in Qlik and start applying agentic data engineering to your team’s workflows.
Built for the builders: Modern data engineering is AI powered — and engineer led.
The pilot-to-production gap is real. From fragmented data to governance gaps Qlik and AWS break down what’s holding your enterprise AI back — and how to solve them.
Yesterday’s innovations are today’s table stakes. BARC reveals modern ISVs’ most essential capabilities.
Your journey awaits! Join us by Logging in and let the adventure begin.
Data Restores Confidence: How SEFAZ-RS Used Qlik to Support the Rebuilding of a State.
AFIP revolutionizes management, optimizes resource allocation and strengthens data-driven culture
Global container shipping giant delivers data transparency to enable confident decision-making and operational efficiency.
Qlik turns raw data into valuable learning experiences, empowering both students and faculty at TTUHSC.
MillerKnoll partnered with Qlik Talend® data solutions to unify data across its diverse systems, accelerating critical processes and nearly eliminating data integration issues organization-wide.
Migration to Qlik Cloud Analytics optimizes analytics applications within months.
With Qlik Cloud Analytics, Rexel boosts performance by enabling self-service analysis, reducing prep time, and giving 3,000 users access to trusted insights.
Join one of our Location and Language groups. Find one that suits you today!
Únete a la conversación con usuarios de Qlik en todo México: comparte ideas, haz preguntas y conéctate en español.
Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。
Connectez-vous avec des utilisateurs francophones de Qlik pour collaborer, poser des questions et partager des idées.
Join data and AI leaders in Zurich on June 10, 2026 to learn how to scale AI and drive real enterprise impact.