Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Qlik Cloud Lineage graph does not show all nodes of an ETL process

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Andreas_Giesbrecht

Qlik Cloud Lineage graph does not show all nodes of an ETL process

Last Update:

Sep 20, 2022 6:15:17 AM

Updated By:

Andreas_Giesbrecht

Created date:

Sep 20, 2022 6:07:46 AM

The lineage graph might not show the whole ETL process in the Qlik Cloud Services, but instead only one node like for example in the following screenshot:

Andreas_Giesbrecht_0-1663667409655.png

 

However the expected result would be the whole graph as seen in here:

Andreas_Giesbrecht_1-1663667608453.png

The unexpected result seems to be caused by the lib statements in upper case in the store statements for the QVD creation and/ or missing brackets in the store statements in the load script, please find an example script for a failed lineage down below:

 

 

//APP Extract

[People]:
LOAD * inline [
  ID,Name,Job,EMail,Address,DateOfBirth, Country
  A, B,C,D,E,F,G

]
;

STORE [People] into [LIB://:DataFiles/People.qvd] (qvd);
Drop table [People];




//App Transform

[People1]:
LOAD
ID,
	
	num(0.01*[ID],'0%')									as [ID_test],
	[EMail] 													as [Email_adress],
	Upper([Job])						as Job_Name,
	pick(match([Country], 'U', 'S', 'K','N'),
    	'Denmark', 
        'Sweden',
        'Finland',
        'Norway') 	as [Country],
	dayname([DateOfBirth]) 										as [Date of birth]
 FROM 
 	[LIB://:DataFiles/People.qvd] (qvd)
;

Store [People1] into LIB://:DataFiles/People1.qvd (qvd);
DROP TABLE [People1];


//App Load

People2:
LOAD
    ID,
    ID_test,
    Email_adress,
    Job_Name,
    Country,
    "Date of birth"
FROM [lib://:DataFiles/People1.qvd]
(qvd);

 

 

 

 

Environment

 

Resolution

R&D is working at the moment on this issue, there is no ETA for a fix available. 

Information provided on this defect is given as is at the time of documenting. For up to date information, please review the most recent Release Notes, or contact support with the ID QB-14302 for reference.

 

Workaround:

Please make sure that all lib statements are in lower case and include according brackets as for example "STORE [People] into [lib://:DataFiles/People.qvd] (qvd);"

 

Cause

Product Defect ID: QB-14302

 

Tags (1)
Contributors
Version history
Last update:
‎2022-09-20 06:15 AM
Updated by: