Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 260,527 members
  • 12,257 online
  • 2,042,678 posts
  • 153,905 Solutions
Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.

Welcome to Qlik Community

Recent Discussions

  • No Boards Found
  • forum

    Integration, Extension & APIs

    Acuity->QlikSense Connection Possible or Not?

    Hello Folks, We are wanting to connect to an Acuity report with our QS Feb 2023 installation.  Acuity seems to have a two step process 1. Request an a... Show More

    Hello Folks,

     

    We are wanting to connect to an Acuity report with our QS Feb 2023 installation.  Acuity seems to have a two step process

     

    1. Request an auth token that will expire in 30 seconds.

    2. Use the said token to request the report.

     

    As you see, this is a two step process.  My question is "Can Qlik connect in a 2-step fashion"?  I haven't seen it done, but would like to know if anyone else has solved such a problem.

     

    Any help is greatly appreciated.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik NPrinting

    NPrinting Long User Import Time

    Hello Folks, I have an NPrinting system that takes a while (~12 hours) to import all the users.  What should my next move be to shorten this process? ... Show More

    Hello Folks,

     

    I have an NPrinting system that takes a while (~12 hours) to import all the users.  What should my next move be to shorten this process?  I know I can get a larger servers, but are there transaction settings on the DB that I might be able to look into?

     

    justindallasverizon_0-1757489619864.png

     

     

    Any help is greatly appreciated.

     

    The import will also fail, complaining about a deadlock if that helps.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    App Development

    How to calculate Total upc sales within categoty

    Hi allI need to create a pivot table with a calculation where Sum(Sales) for UPC is divided by Sum(Sales) for particular category, this UPC is related... Show More

    Hi all
    I need to create a pivot table with a calculation where Sum(Sales) for UPC is divided by Sum(Sales) for particular category, this UPC is related

    Test_Table:
    LOAD * INLINE [
    Category, UPC, Sales
    Beverages, 123, 1500
    Dairy, 987, 2300
    Dairy, 456, 1200 ]; 

    So 
    For UPC 123 = 1500/1500
    For UPC 987 = 2300/(2300+1200)
    For UPC 456= 1200/(2300+1200)

    This should be something like Sum(Sales)/Sum(Total Sales). But how to add an analysis part so that the category is also included?

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Data Movement & Streaming

    Configure Oracle as source without cdc

    Hi,I want to configure Oracle on premise only to load full load, but in the parameters of connection need put the asm parameter.there are any way to c... Show More

    Hi,

    I want to configure Oracle on premise only to load full load, but in the parameters of connection need put the asm parameter.

    there are any way to configure parameter connection in oracle as source without asm and cdc.

     

    Thanks

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik Automate

    Error calling endpoint Talend Cloud - Execute Plan

    How should the Talend Cloud - Execute Plan block in Qlik Automation be configured? I have not found much documentation on this connector. Below is an ... Show More

    How should the Talend Cloud - Execute Plan block in Qlik Automation be configured? I have not found much documentation on this connector. 

    Below is an image of the current configuration. The Get Plan Tasks block appears to be working as expected.

    Automation blocks with Execute Plan configuration shown.Automation blocks with Execute Plan configuration shown.

     

     

     

     

     

     

     

     

     

     

     

     

    I am receiving a status 500 error. I have tried several times over the last week. Below is the input and output of the Execute Plan block. 

     

    Input

    {
      "executable": "aa65e911-0000-0000-0000-000000000000",
      "executionPlanId": "7c29a0a7-0000-0000-0000-000000000000",
      "stepId": "868438b7-0000-0000-0000-000000000000",
      "rerunOnlyFailedTasks": null,
      "datasource": "1234feed-0000-0000-0000-000000000000",
      "blendr_on_error": "stop"
    }

     

     

    Output

    {
      "error": "Error calling endpoint \"Talend Cloud - Execute Plan\"",
      "endpoint": {
        "name": "Execute Plan",
        "datasource": "Talend Cloud"
      },
      "request": {
        "url": "https://api.us.cloud.talend.com/processing/executions/plans",
        "method": "POST"
      },
      "response": {
        "status": 500,
        "body": {
          "status": 500,
          "requestId": "123abc",
          "message": "internal server error: please try later"
        }
      },
      "external error": true
    }

     

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    App Development

    Qvds Cleanup Script is now working as expected

    Hi Experts, I have a requirement like need to clean cleanup more than 10 days qvds data with loading qvds data(records) into Qlik only using filename ... Show More

    Hi Experts,

    I have a requirement like need to clean cleanup more than 10 days qvds data with loading qvds data(records) into Qlik only using filename basis.

    Below is the script to generate Daily qvds.

    T1:
    LOAD Date,

    Date(Date,'YYYYMMM') as YearMonth,
    Date(Date,'YYYY-MM-DD') as Day,
    Product,
    Sales
    FROM
    [D:\My Daily Prac\DAILY QVDS\01-01-2025.xlsx]
    (ooxml, embedded labels, table is Sheet1);

    let vm=NoOfRows('T1');

    for i=0 to $(vm)-1;
    let vFileName=peek('Day',$(i),'T2');

    NoConcatenate
    T2:
    load *
    Resident T1 where Day='$(vFileName)';
    STORE T2 into D:\My Daily Prac\DAILY QVDS\$(vFileName).qvd (qvd);
    DROP table T2;
    next i;

    Below Script help us to cleanup the qvds (loading qvd records data )

     

    Set vQvdpath='D:\My Daily Prac\DAILY QVDS\';
    Let vCurrentDate= DATE(TODAY(),'YYYY-MM-DD');
    Let vDays90DaysAgo= DATE((TODAY()-10),'YYYY-MM-DD');

    OldQvdFiles:
    Load *,
    FileName() AS QvdFileName,
    FileTime() AS QvdFileTime,
    'Daily' AS TYPE
    FROM
    [$(vQvdpath)*.qvd](qvd)

    WHERE DATE(DATE#(MID(FileName(),Index(FileName(),'DAILY QVDS')+1,10),'YYYY-MM-DD'),'YYYY-MM-DD')<= DATE((TODAY()-10),'YYYY-MM-DD');

    FOR i=0 to NoofRows('OldQvdFiles')-1
    LET vCurrentQvdFile= Peek('QvdFileName',$(i),'OldQvdfiles');
    LET vQvdFilePath='$(vQvdpath)' & vCurrentQvdFile;


    TempTable:
    Load *
    FROM [$(vQvdFilePath)](qvd)
    WHERE 0;
    STORE TempTable INTO [$(vQvdFilePath)] (qvd);
    DROP TABLE TempTable;
    TRACE Cleared QVD File: $(vQvdFilePath);
    NEXT i;

    exit Script;

    My Qlik secript is working like While loading data it is fecting records from each qvds and later is clean up but i want to cleanup the qvds withloading data from qvds and using only filename of the qvds.

    It should not fetch the records like these when i load it.

    comeonqlikview_0-1757426527743.png

    It has to work directly like how temp table is loading when we are running the app

    Note This can be fine in qliksense and and code has to build without OS commands and Any external scripts.

    @sunny_talwar 

     

     

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Administering and Monitoring

    Auth0 as Qlik Idp - Setting a custom claim

    I have reviewed the following article: Qlik Cloud: How to set up Auth0 and map roles to g... - Qlik Community - 2474504 as it is similar to what I wou... Show More

    I have reviewed the following article: Qlik Cloud: How to set up Auth0 and map roles to g... - Qlik Community - 2474504 as it is similar to what I would like to do.

    I am trying to setup a custom claim for email between auth0 and Qlik.

    On the auth0 side, I have created a post login action that sets the custom claim: https://test.my-domain.com/email. All the testing on auth0 side shows this working as expected.

    // key code in action

      api.idToken.setCustomClaim(`${ns}/email`, email); 
      api.accessToken.setCustomClaim(`${ns}/email`, email); 
    //
     

    On the Qlik, I have successfully setup the Idp without the custom claim i.e. just using email.  In /api/v1/diagnose-claims, I see my custom claim with the proper value in the claimsFromIdp section.

    The next step, I replace email in the claims mapping with https://test.my-domain.com/email,email .

    It always chooses email not the custom claim. The custom claim is empty (but can be found in claimsFromIdp?).

    I have checked "Email verified override". 

    I have tried many things, nothing seems to get this custom claim to work.

    Any help is appreciated.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Management & Governance

    Load few connections in Dataload Editor

    Dear Team,In our development environment, we have over 3000+ connections, and users are experiencing significant delays when accessing the Data Load E... Show More

    Dear Team,

    In our development environment, we have over 3000+ connections, and users are experiencing significant delays when accessing the Data Load Editor page. The page takes a long time to load the connections, and it freezes for several seconds during this process.

    I have heard that there is a possibility to optimize this by loading only a subset of connections at a time. Could you please provide guidance or share an article on how to implement this solution?

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Data Movement & Streaming

    QCDI Oracle as Source permissions only for full load

    Hi,I want to configure in QCDI database Oracle 19c as source, but only want to work as full load.What permission must be granted?Its ok these ?:SELECT... Show More

    Hi,

    I want to configure in QCDI database Oracle 19c as source, but only want to work as full load.

    What permission must be granted?

    Its ok these ?:

    SELECT ANY TABLE
    SELECT all_indexes
    SELECT all_ind_columns
    SELECT all_constraints
    SELECT all_cons_columns
    LOCK ANY TABLE

    thanks,

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Connectivity & Data Prep

    Qlik Cloud Trial version REST API connection

    Hi, I am using a Qlik cloud Trial version(student subscription) for learning purpose. I wan to try integrating OpenAI into qlik usin REST API, how to ... Show More

    Hi,

    I am using a Qlik cloud Trial version(student subscription) for learning purpose. I wan to try integrating OpenAI into qlik usin REST API, how to do that. 

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.

FREE TRIAL

Data has stories to tell—let Qlik help you hear them. Start your FREE TRIAL today!

Weekly Leaderboard

Customer Story

Catalyst Cloud (Fusion)

Catalyst Cloud developed Fusion, a no-code portal that integrates with existing Qlik licenses to deliver critical insights across the organization. The results? Time savings, transparency, scalability to expand, and increased adoption.

Your Place, Your People

Choose a Group

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

Collaborate

Did you know...

Qlik Free Trials

You can test-drive Qlik for free? Try Qlik Talend Cloud to integrate and clean data without code, or explore Qlik Cloud Analytics to create AI-powered visualizations and uncover insights hands-on.