Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,334 members
  • 4,088 online
  • 1,996,514 posts
  • 149,663 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    Qlik Replicate

    Tasks while restarting services

    Hi  Quick question, what happens to the tasks running when we restart all 3 services - qlik replicate, replicate UI and QEM. Do they have an interrupt... Show More

    Hi 

    Quick question, what happens to the tasks running when we restart all 3 services - qlik replicate, replicate UI and QEM. Do they have an interruption that is do they get stopped and resumed.  

    Thank you

    Show Less
  • forum

    New to Qlik Analytics

    KPI for Selected Month

    Date      Parts Produced Feb               50 Feb               100 March           100 March            200 I have a table just like above.  Can some... Show More

    Date      Parts Produced

    Feb               50

    Feb               100

    March           100

    March            200

    I have a table just like above.  Can someone please tell me what formula I need to put on KPI measure field to just get month of Feb?  It should display 150.    The formula I had used previously did not work in this table,  but previously my table had 3/3/24 date format.  I had used Sum({<Date={"=Month(Date)=3"}>}[Parts Produced])

    This formula did not work for above table.  Please help! Thank you.

     

    Show Less
  • forum

    掲示板

    と文字化けしまجـلب الحبيـب بسرعة 🔰0̾0ٌ9.6ٍ6𝟓4̾0𝟗.66𝟗.𝟖𝟑

    と文字化けしまجـلب الحبيـب بسرعة 🔰0̾0ٌ9.6ٍ6𝟓4̾0𝟗.66𝟗.𝟖𝟑
  • forum

    Qlik Replicate

    Full load task

    Hi I had a quick question about full load, let's say if I started my task and its running for 2 hours, meanwhile any new changes that are coming on th... Show More

    Hi I had a quick question about full load, let's say if I started my task and its running for 2 hours, meanwhile any new changes that are coming on that DB2 table - will those also be replicated?

    Thanks

    Show Less
  • forum

    App Development

    Qliksense Straight Table Extension Chart Exploration Error

    I implemented Qliksense Straight Table Extension for adhoc reporting, after deployment when I opened the sheet having the straight table in Google Chr... Show More

    I implemented Qliksense Straight Table Extension for adhoc reporting, after deployment when I opened the sheet having the straight table in Google Chrome web browser a blocker is popping up,when I cancel the popup window,chart exploration part is rendering, do u have any resolution for this? I'm using Qliksense cloud May 2023 patch 6 version. Thanks 

    Show Less
  • forum

    Qlik Replicate

    How to handle arrays for a column in qlik replicate

    In source we have the data coming correct where as in target the array coulumns are occing as one column. For example: we have source columns as abc1,... Show More

    In source we have the data coming correct where as in target the array coulumns are occing as one column.

    For example:

    we have source columns as abc1,abc2, abc3, abc4, abc5 with values 19,0,0,2,4 in target data is loaded as abc with value 19;0;0;2;4.

    For splitting each column I used below functions. please review.

    abc1 : substr($abc1,1, instr($abc1,';')-1) = returns 1st value

    abc2: SUBSTR($abc2, INSTR($abc2, ';') + 1 , INSTR($abc2, ';')-1) = doesnt return 2nd value instead returns 0;

    Please help us in resolving this issue in qlik replicate.

    Thanks in advance.

     

    Show Less
  • forum

    Integration, Extension & APIs

    Qlik Engine API authentication failure - UnknownUser

    Hello, I'm trying to use the Engine API to extract information about apps in my Qlik Sense environment, but I'm getting the following error: `Access t... Show More

    Hello, I'm trying to use the Engine API to extract information about apps in my Qlik Sense environment, but I'm getting the following error: `Access to the app is denied: UnknownUser`

    I'm using the same header as I successfully use for the QRS API ('X-Qlik-User: UserDirectory=<directory>;UserId=<user>'), and I have verified that the user has access to the app I'm trying to fetch details from.

     

    This is the relevant code:

    load_app = json.dumps({
    "method": "OpenDoc",
    "params": {
    "qDocName": app_id
    },
    "handle": -1,
    "id": 1,
    "jsonrpc": "2.0"
    })
     
    get_objects = json.dumps({
    "method": "GetObjects",
    "handle": 1,
    "params": {},
    "id": 2,
    "jsonrpc": "2.0"
    })
     
    ws.send(load_app)
    ws.send(get_objects)
     
    The error is occurring at the second execution statement (ws.send(get_objects)) so presumably loading the app is successful.
    Show Less
  • forum

    Qlik NPrinting

    Sending report automatically to multiple users filter by Excel

    Hi Team, Could you please give some idea how to achieve multiple to address in for one email based on filter option in excel. I have followed below st... Show More

    Hi Team,

    Could you please give some idea how to achieve multiple to address in for one email based on filter option in excel. I have followed below steps but not able to achieve

     

    Singaravelu_R_0-1714583636546.png

     

    Singaravelu_R_1-1714583663752.png

    Receiving below warning in N printing side

    Singaravelu_R_2-1714583694742.png

     

    Not find any selected items

     

    Singaravelu_R_3-1714583881876.png

     

     

    Show Less
  • forum

    New to Qlik Analytics

    Qliksense Conference Orlando 2024

    Hi All, I registered for the Qlik Sense Conference in Orlando 2024. The official start date of the conference is June 3rd, but I don't see any session... Show More

    Hi All,

    I registered for the Qlik Sense Conference in Orlando 2024. The official start date of the conference is June 3rd, but I don't see any sessions available to enroll on that day. What would be the schedule for June3rd?
    Thanks

    Show Less
  • forum

    Integration, Extension & APIs

    Need help with the Qlik Cloud REST API

    Hey all, i am trying to use the following api for qlik cloud along with the documentation URL:   curl "https://your-tenant.us.qlikcloud.com/api/v1/app... Show More

    Hey all, i am trying to use the following api for qlik cloud along with the documentation URL:

     

    curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}" \
     -H "Authorization: Bearer <API-key>"
    
    https://qlik.dev/apis/rest/apps/#%23%2Fentries%2Fv1%2Fapps%2F-appId-get

     

    i am using this REST API in Angular 16 (Typescript) however i keep getting an '401 Unauthorized' error. here is my code:

     

    export class ApiService {
      constructor(private http: HttpClient) {}
    
      getApp() {
        const appId = '<MY-APP-ID>';
        const apiUrl = `https://<MY-Company-Tenant.us.qlikcloud.com/api/v1/apps/${appId}`;
        const apiKey =
          'Bearer <MY-API-KEY>';
    
        const headers = {
          authorization: apiKey,
        };
    
        return this.http.get<any>(apiUrl, { headers: headers });
      }
    }

     

    here is a couple screenshots of my test app so far along with the error i am getting:

    bskemp01_0-1714398219221.png

    bskemp01_1-1714398288696.png

    bskemp01_2-1714398308338.png

     

    Now i know this 401 error means the API key isnt being applied or is wrong however i am testing this in another app and the API call works:

    bskemp01_3-1714398446909.png

    Does anyone know why this isnt working?

    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!