Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 221,707 members
  • 4,971 online
  • 2,002,051 posts
  • 150,129 Solutions

Welcome to Qlik Community

Recent Discussions

  • forum

    Design and Development

    Using tUnpivotRow with Excel files with different schemas

    Hi everyone, I've created a Job that reads an Excel file and pivots some columns to rows. So far so good.This is the Excel file: Even though I'm usin... Show More

    Hi everyone,

    I've created a Job that reads an Excel file and pivots some columns to rows. So far so good.
    This is the Excel file:

    RMotta2408_0-1717688204406.png

    Even though I'm using a dynamic schema (*) to read the file, I still have to know the real schema of the file so that I can configure the tExtractDynamicFields component correctly:

    RMotta2408_1-1717688484556.png

    Then I use the tUnpivotRow component like this (because these columns are always constant):

    RMotta2408_2-1717688565539.png

    And I get the desired result:

    RMotta2408_3-1717688691758.png


    Thus far all is good.
    The problem starts when I start getting Excel files with different schemas (mind you, the first 3 columns are always the same: Name, Surname, City).
    (*) This is why I'm using the dynamic schema to read the Excel file.
    How do I work with these files? How do I make my Job ready for any Excel that comes with a different schema than the one I'm using in this Job? 

    Thank you,
    Rui

     

    Show Less
  • forum

    App Development

    Sharing bookmark

    Hi all,   Sorry for the newbie question. I would like to share a bookmark of a published dashboard so that other users can see my selection directly. ... Show More

    Hi all,

     

    Sorry for the newbie question. I would like to share a bookmark of a published dashboard so that other users can see my selection directly.

    From the explanatory video, I see that after creating the bookmark there should be the option "Copy link" by clicking on the label of the bookmark.

    However, in my case, this option does not exist. 

    borrant_0-1717688850574.png

    Any suggestion on what I am doing wrong?

     

    Thanks!

     

    Show Less
  • forum

    Qlik Replicate

    Oracle to ADLS Full load is failing with ]E: Failed to convert file from csv to...

    Hello, We have a Full load + Store changes task which loads data from Oracle to ADLS(parquet snappy format). But it is failing for one table during Fu... Show More

    Hello,

    We have a Full load + Store changes task which loads data from Oracle to ADLS(parquet snappy format). But it is failing for one table during Full load with the error:

    00018089: 2024-06-05T05:47:20 [TARGET_LOAD ]E: Failed to convert file from csv to parquet [1024902] (file_utils.c:899)
    00018089: 2024-06-05T05:47:20 [TARGET_LOAD ]E: Failed to convert file '/data/replicate/qlik/tasks/task_name/data_files/MY_TABLE_NAME/LOAD0000000E.tmpcsv'. [1024902] (file_imp.c:2538)
    00018088: 2024-06-05T05:47:20 [SOURCE_UNLOAD ]I: Unload finished for table 'FS'.'MY_TABLE_NAME' (Id = 6). 16436666 rows sent. (streamcomponent.c:3784)
    00018033: 2024-06-05T05:47:20 [TASK_MANAGER ]W: Table 'FS'.'MY_TABLE_NAME' (subtask 1 thread 1) is suspended. (replicationtask.c:3147)
     
    Any suggestions to resolve that? 
    Show Less
  • forum

    Deployment & Management

    Remove ridiculous new user 'Welcome' questionnaire

    We have an OEM deployment of Qlik SaaS, using an IdP and whenever user's login for the first time they get this ridiculous questionnaire/prompt The pr... Show More

    We have an OEM deployment of Qlik SaaS, using an IdP and whenever user's login for the first time they get this ridiculous questionnaire/prompt

    The prompt:

    1. Cant be closed without answering the questions

    2. Asks questions that most business users don't know the answers to

    3. Makes it a nightmare for a neat, nice user onboarding experience

    lachlanwcast_0-1717385318086.png

     

    Why can't this be disabled? ESPECIALLY for tenants that are OEM/managed by a 3rd party

    Getting very frustrated at all the changes Qlik have been making with Cloud and this just makes it even worse....How did something like this get past Qlik UX testing? Understand the information provided could be useful for internal analytics but it frustrates the users (and admins of the product) - if the goal is to get Qlik Cloud to be an enterprise product (just like SaaS client-managed) take a look at how this affects sysadmins

     

    Show Less
  • forum

    New to Qlik Analytics

    Expression to show only dates in next two weeks

    I built an expression to find all dates in the next two weeks, but it also shows dates in the past. How can I update my expression to remove the dates... Show More

    I built an expression to find all dates in the next two weeks, but it also shows dates in the past. How can I update my expression to remove the dates in the past 

    this is my expresison (its on a button)

    ='<=' & Date(Today()+7, 'YYYY-MMM-DD')

    Show Less
  • forum

    New to Qlik Analytics

    Gerar meses faltantes caso não haja registros.

    OriginalData: LOAD * INLINE [ Filial ,Produto,Date ,Tipo ,Seq ,Quantidade 51 ,161642 ,03/05/2019 ,COM ,37620 ,12 51 ,161642 ,14/08/2019 ,COM ,38376 ,2... Show More
    OriginalData:
    LOAD * INLINE [
    Filial ,Produto,Date ,Tipo ,Seq ,Quantidade
    51 ,161642 ,03/05/2019 ,COM ,37620 ,12
    51 ,161642 ,14/08/2019 ,COM ,38376 ,24
    51 ,161642 ,24/08/2019 ,EVF ,38445 ,4
    51 ,161642 ,27/08/2019 ,EVF ,38466 ,2
    51      ,161642,06/06/2024, EVF,     38467  ,1
    51      ,161642,06/06/2024, COM,     38467  ,2
    ];
     
    ProcessedData:
    LOAD
    *,
    If(isAccum
      ,If(Tipo='COM'
        ,Peek('Balance') + Qtde_COM
        ,Peek('Balance') - Qtde_EVF)
      ,If(Tipo='COM', Qtde_COM, -Qtde_EVF)
    ) as Balance,
    If(isAccum
      ,Peek(Balance)
      ,0) as Previous
    ;
    LOAD
    *,
    If(Tipo='COM', Quantidade, Alt(Peek('LastCOM'),0))
    as LastCOM,
    If(Tipo='EVF', Quantidade, Alt(Peek('LastEVF'),0))
    as LastEVF,
    If(Tipo='COM', Fabs(If(isAccum, Quantidade-Peek('LastCOM'),Quantidade)), 0)
    as Qtde_COM,
    If(Tipo='EVF', Fabs(If(isAccum, Peek('LastEVF')-Quantidade,Quantidade)), 0)
    as Qtde_EVF
    ;
    LOAD
    Filial,
    Produto,
    Date,
    Tipo,
    Seq,
    Quantidade,
    If(Peek(Filial)=Filial and Peek(Produto)=Produto, 1, 0) as isAccum
    Resident
    OriginalData
    Order By
    Filial,
    Produto,
    Date
    ;
     
    DROP Table OriginalData;
    O Resultado é o experado. Correto. 
    Produto Date Previous Qtde_COM Qtde_EVF Balance
    161642 03/05/2019 0 12 0 12
    161642 14/08/2019 12 12 0 24
    161642 24/08/2019 24 0 4 20
    161642 27/08/2019 20 0 2 18
    161642 06/06/2024 18 0 1 17
    161642 06/06/2024 17 22 0 39

     

    Preciso agora e gerar o Previous no meses faltantes. adaptando o scritp acima.

    Caso o mês tenha registro desconsidere, caso não tenha gere pelo ultimo registro anterior clonado o resto.

    igual no exemplo abaixo.

    Exemplo:

    Produto Date Previous Qtde_COM Qtde_EVF Balance
    161642 03/05/2019 0 12 0 12
    161642 14/08/2019 12 12 0 24
    161642 24/08/2019 24 0 4 20
    161642 27/08/2019 20 0 2 18
    161642 27/09/2019 20 0 2 18
    161642 27/10/2019 20 0 2 18
      até mês atual,.....        
    161642 06/06/2024 18 0 1 17
    161642 06/06/2024 17 22 0 39
    Show Less
  • forum

    Deployment & Management

    Editing users with qlik-cli

    Following the documentation for editing users in the qlik-cli we are getting errors when attempting to edit a user   https://qlik.dev/toolkits/qlik-cl... Show More

    Following the documentation for editing users in the qlik-cli we are getting errors when attempting to edit a user

     

    https://qlik.dev/toolkits/qlik-cli/user/user-edit/

     

    We've tried a bunch of different variations for changing the user email address so we can migrate to a new identity provider.

     

     

    //If we enter 
    qlik user edit <userid>
    
    //then a notepad window pops up and with the user content
    //which we can edit without issue but the help for the command 
    //shows how to use a --body flag but no matter how we code 
    //that one we get an error saying that the flag --body does
    //not exist
    
    
    
    //Here is the text from the command help
    
    
    
    qlik user edit <userId> --body '[{"op":"replace","path":"/name","value":<value>}]'
    
    

     

     

     

    Does anybody have any suggestion for this syntax 

     

    Show Less
  • forum

    Qlik Replicate

    Timeout on Replicate accessing Db2 for z/Os Endpoint

    Hi All   I encountered this error on a QLIK CDC task LogStream Reades form Db2 for Z/os   .. 03709319: 2024-05-08T07:36:31 [ASSERTION       ]W:  Log r... Show More

    Hi All

     

    I encountered this error on a QLIK CDC task LogStream Reades form Db2 for Z/os

     

    ..

    03709319: 2024-05-08T07:36:31 [ASSERTION       ]W:  Log record decompression problem for table 'CCCHP1CO.EVENT': return code = 8, reason code = 00C90063, diagnostic code = 00C9008E, position=00DF0FAEAFE6F19C6200, retry up to 300 seconds

    db2z_ifi_parser.c:1565)

    03709319: 2024-05-08T07:42:55 [ASSERTION       ]W:  Retry decompression failed for table 'CCCHP1CO.EVENT'. Table will be suspended.  (db2z_ifi_parser.c:1589)

    03709319: 2024-05-08T07:42:55 [ASSERTION       ]W:  Send the table error notification for 'CCCHP1CO.EVENT' (Log record decompression failed)  (db2z_endpoint_capture.c:791)

    03709051: 2024-05-08T07:42:55 [TASK_MANAGER    ]W:  Table 'CCCHP1CO'.'EVENT' (subtask 0 thread 0) is suspended.   (replicationtask.c:3150)

    ---

    diagnostic code = 00C9008E indicated a TIMEOUT event received by Qlik replicate (it was confirmed by db2 adderss space messages)

    his situation when a heavy DDL ALTER was performed on undetlying tables on DB2 (that table is compressed) and was delayed due to  : however after 600 seconds DDL ALTER finished successfully

    I like to know if it is possible to increase this retry time and/or to execute this retry for multiple time avoiding table suspension

     

    Let me know

    Regards

    A.Ferrario

    Show Less
  • forum

    New to Qlik Analytics

    SSO for Qlik stopped working for some users

    Hi,   I have a strange problem where the SSO stopped working for a couple of users only, before that it worked fine, this started for about two months... Show More

    Hi,

     

    I have a strange problem where the SSO stopped working for a couple of users only, before that it worked fine, this started for about two months ago and nothing has changed in the environment. When they try logging in from a different computer it works fine and they don't have to enter the credentials.

    Seems strange that only a couple of users having problem with this and only on their computers. Anyone have any idea what could have happened here?

     

    Show Less
  • forum

    App Development

    Script Help Needed: Create Unique Key by CONCATENATE of 4 columns from 2 differe...

    Hello Everyone,   I need help of writing script of creating unique key of 4 columns from 2 tables. please help me at earliest  -----------************... Show More

    Hello Everyone,

     

    I need help of writing script of creating unique key of 4 columns from 2 tables. please help me at earliest 

    -----------************----------------------

    LIB CONNECT TO 'DATABASE';

    [TABLE 1] :

    Load 

    Column 1 as AA

    Column 2 as BB

    Column 3 as CC;

    SQL SELECT "Column 1", "Column 2", "Column 3" FROM DATABASE Table;

     

    [TABLE 2] :

    Load 

    Column X as XX

    Column Y as YY

    Column Z as ZZ;

    SQL SELECT "Column X", "Column Y", "Column Z" FROM DATABASE Table;

     

    Please help me what should I add in the script to create another table or add in any of the above table where I can make unique key as below.

     

    CONCATENATE: Column Name: UNIQUEKEYADDR = AA&'-'&BB&'-'&XX'-'&YY

    Please help me at earliest !!

    Show Less
Leaderboard

Customer Story

Accelerating Decision-Making with Qlik Insights

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.

Customer Story

Efficiency in Agriculture: Nortera's Qlik Triumph

Nortera leads agricultural manufacturing analytics and automation with Qlik, reducing short-shipment rates and annual savings in water consumption.

Customer Story

Revolutionizing aircraft production through Data Analytics

Qlik Data Integration transforms Airbus' aircraft production, leading to over 150 replication tasks and informing more efficient analysis.

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!