Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,954 members
  • 8,811 online
  • 1,997,593 posts
  • 149,756 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    Qlik Application Automation

    Application Automations Monitoring v1.1 fails with HTTP protocol error 422 (Unpr...

    Hi, I have deployed the app Application Automations Monitoring v1.1 in the SaaS tenant and was reloading successfully till last month.  https://commun... Show More

    Hi,

    I have deployed the app Application Automations Monitoring v1.1 in the SaaS tenant and was reloading successfully till last month. 

    https://community.qlik.com/t5/Official-Support-Articles/How-to-automation-monitoring-app-for-tenant-admins-with-Qlik/ta-p/2025392

     

    Now, the reload fails with error below. No changes have been made to the data connection. 

    Any ideas on how to fix it?

    "
    No Incremental QVDs found.
    Connected RestConnectorMasterTable << RestConnectorMasterTable Lines fetched: 33 Automation << RestConnectorMasterTable Lines fetched: 32
    RestConnectorMasterTable << RestConnectorMasterTable
     
    The following error occurred:
    (Connector error: HTTP protocol error 422 (Unprocessable Content): {"limit":["The limit may not be greater than 200."]})
     
    The error occurred here:
    RestConnectorMasterTable: Load *, 'fc80c290-0c6a-11ee-8bf8-b3a699186b55' as AutomationId, '' as AutomationName
    "
    Show Less
  • forum

    Design and Development

    [solved] Running 2 data services at the same time in Talend Studio

    Hi, I'm working in Talend Studio, and I need to run 2 jobs which contain data services at the same time to test a route. I get an error because they c... Show More

    Hi, I'm working in Talend Studio, and I need to run 2 jobs which contain data services at the same time to test a route. I get an error because they cannot be run in same port (8090). Is there any way to set a different port when you run a data service?

    Error message:

    Endpoint deployed at: <localhost>:8090/ <myEndPoint>
    [statistics] connecting to socket on port 3717
    Exception in component tRESTRequest_1_Loop (<myDataService>)
    java.lang.IllegalArgumentException: Cannot start provider with uri: <localhost>:8090/ <myEndPoint>. Port 8090 already in use.
    at XXXXXXX.<myDataService>.checkEndpointUrl(<myDataService>.java:1250)
    at XXXXXXX.<myDataService>.tRESTRequest_1_LoopProcess(<myDataService>.java:5300)
    at XXXXXXX.<myDataService>.runJobInTOS(<myDataService>.java:6863)
    at XXXXXXX.<myDataService>.main(<myDataService>.java:6171)

    Show Less
  • forum

    Qlik Replicate

    Convert Numeric value to string

    We wanted to Convert a numeric value to String and then check the length of the string and if it exceeding 255 we need to get first 255 char or we nee... Show More

    We wanted to Convert a numeric value to String and then check the length of the string and if it exceeding 255 we need to get first 255 char or we need to load it as it is.

     

    Below is the Code we are using , the case statement is working as the data is coming as numeric the code is failing

     

    case when
    length($code_value) > 255 then substr($code_value,1,instr($code_value, ";")+250)
    else
    $code_value
    end

     

    Is there a way we convert numeric to string.

     

    Show Less
  • forum

    Qlik Replicate

    SQL Server LOG_BACKUP full

    We run Replicate and Compose on-prem, writing to a SQL Server instance also on-prem. Our DBA has scheduled 4-hour backups for all the company's SQL Se... Show More

    We run Replicate and Compose on-prem, writing to a SQL Server instance also on-prem. Our DBA has scheduled 4-hour backups for all the company's SQL Servers which is supposed to truncate the transaction logs for all the databases after doing so. However, the logs for both my test and production data warehouse databases seem to be immune to such truncation:

    JacobTews_0-1715182339478.png

     

    Notice in particular the fact that the log for the test data warehouse is actually bigger than the test data warehouse itself!

    Any systems-knowledgeable folks out there have any insights?

    Is there a setting in Replicate that I have inadvertently toggled to cause such behavior?

    Qlik Replicate 

    Show Less
  • forum

    New to Qlik Analytics

    Modelling of P&L table with different variables per line

    I need to modify an existing P&L table with several scenarios (using the Vizlib solution with external Excel table).Is is possible in a P&L table to u... Show More

    I need to modify an existing P&L table with several scenarios (using the Vizlib solution with external Excel table).

    Is is possible in a P&L table to use different factors per line?

    sum(  Value* $(=PL_View_Factor_Best) )

    I get the right calculation, when the factor is the same for all lines, but when using different values or even an conditional value for different scenarios, it returns no value.

    Is there another/better way to solve this?

    Show Less
  • forum

    New to Qlik Analytics

    Pagination Next URL Not working

    i have dat like below in postman request   in qlik connection i am using nextUrl as my pagination  Next Url path :paging/link it bring only one page ... Show More

    i have dat like below in postman request

    ChannaK_0-1715155076241.png

     

    in qlik connection i am using nextUrl as my pagination 

    Next Url path :paging/link

    it bring only one page can you help here

     

    Show Less
  • forum

    App Development

    How to abstract a measure for all the different employees?

    I made a measure for taking into account the efficiency of certain producers  ( Sum( Aggr( Count( {< ACTION_CODE = {'LABOR_OFF'}>} dist... Show More

    I made a measure for taking into account the efficiency of certain producers 

    (
    	Sum(
        	Aggr(
            	Count( {< ACTION_CODE = {'LABOR_OFF'}>} distinct MainSFC) * Standard_Time,
                MainSFC)
    	)
    )
    /
    (
    	Count( 
        	distinct WorkingDay) 
            * 7.5 * 60)

     

    And it works fine for the single producer. I want to abstract this, make one that takes into consideration ALL of the producers/employees, so in my mind I tried to do: 

     

    (
    	Sum( {<Employee=>}
        	Aggr(
            	Count( {< ACTION_CODE = {'LABOR_OFF'}, Employee=>}} distinct MainSFC) * Standard_Time,
                MainSFC)
    	)
    )
    
    /
    
    (
    	Count( {<Employee=>}
        	distinct WorkingDay) 
            * 7.5 * 60)

     

    But this doesn't work, and gives me null values. How could I fix this? 

    Show Less
  • forum

    Qlik Replicate

    Impact on SourceDB side when CDC using LogMiner is executed

    Impact on SourceDB side when CDC using LogMiner is executed I would like to check how much load CDC using LogMiner is putting on SourceDB.Please tell ... Show More

    Impact on SourceDB side when CDC using LogMiner is executed

    I would like to check how much load CDC using LogMiner is putting on SourceDB.
    Please tell us about the impact of LogMiner on the performance of Oracle (SourceDB) CPU/IO, etc.

    Best regards,
    Hironori Fujihira

    Show Less
  • forum

    Deployment & Management

    Qlik Sense Upgrade Failed at ServiceDispatcher Step

    Hi, Recently we tried to upgrade our Qlik Sense from May 2023 to August 2023 (IR). The upgrade went well for DEV and QA servers. But it failed on prod... Show More

    Hi,

    Recently we tried to upgrade our Qlik Sense from May 2023 to August 2023 (IR). The upgrade went well for DEV and QA servers. But it failed on production servers. We had to restore production servers with backed up AMI. Now we are investigating the reason why it failed. We have realized that we made a mistake when upgrading QS production which has two nodes: We stopped services on both nodes and then ran installation on two nodes at the same time. We know it is incorrect. But why did it cause problem? I am writing a report and need to gather deeper information.

    Based on installation log files, I can tell the failure occurred at ServiceDispatcher step. Error occurred when it tried to create schema 'qlik_notifier_service'. I checked the log file for the successful installation on DEV server. When it tried to create schema 'qlik_notifier_service' there, it skipped this step because "Schema 'qlik_notifier_service' already exists" (the sentence in log). Why did the installation not skip it during production installation?

    The attached ServiceDispatcher_installation_logs.txt contains related content from log files.

    We need to make sure there is nothing else which caused installation failure. Please advise.

    Thanks

    Show Less
  • forum

    Qlik Reporting Service

    Creating a Measure from a Dimension

    I have a dimension that I created called Proposed Bucket. Here is my if statement: =If(Excp_Category='6-Attempted','2-CUSTOMER ACTION', if(Excp_Categ... Show More

    I have a dimension that I created called Proposed Bucket.

    Here is my if statement:

    =If(Excp_Category='6-Attempted','2-CUSTOMER ACTION',
    if(Excp_Category = '1-Manifest','5-APPLE ACTION',
        If(Excp_Category='5-Out for Delivery','3-OUT FOR DELIVERY',
        if(Current_Scan_Activity_Record_Type='Out For Delivery','3-OUT FOR DELIVERY',
        IF(Excp_Category='7-Delivery','1-DELIVERED', [Exception_Resolution_Proposed_Bucket])))))
     

    I want to create a measure that adds up certain elements of this proposed bucket. 

    Show Less
Leaderboard

Customer Story

Qlik Data Integration & Qlik Replicate story

Qlik enables a frictionless migration to AWS cloud by Empresas SB, a group of Chilean health and beauty retail companies employing 10,000 people with 600 points of sale.

Customer Story

Building a Collaborative Analytics Space

Qlik Luminary Stephanie Robinson of JBS USA, the US arm of the global food company employing 70,000 in the US, and over 270,000 people worldwide.

Location and Language Groups

Choose a Group

Join one of our Location and Language groups. Find one that suits you today!

Collaborate

Healthcare User Group

Healthcare User Group

A private group is for healthcare organizations, partners, and Qlik healthcare staff to collaborate and share insights..

All are welcome

Japan Group

Japan

Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。

Request to join

Brasil Group

Brazil

Welcome to the group for Brazil users. .All discussions will be in Portuguese.

open to all

Blogs

Community News

Hear from your Community team as they tell you about updates to the Qlik Community Platform and more!