Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enrichment the QlikSense lineage functionality #17800

Open
nicolasGutierrezGarcia1970 opened this issue Sep 11, 2024 · 0 comments
Open

Enrichment the QlikSense lineage functionality #17800

nicolasGutierrezGarcia1970 opened this issue Sep 11, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@nicolasGutierrezGarcia1970
Copy link
Contributor

We seem to see a lack of detail in the lineage of QlikSense reports.

For example, if the query of a Qlik report datamodel is as follows:
-- EELL Local Entities
EELL_RESPONSIBLE:
SELECT
e.te_eell “Local Entity”,
er.te_responsible “Responsible”,
'https://example.com/documento/' ||
lpad(e.co_ine, 3, '0') ||
'/document/' |||
lpad(e.co_ine, 3, '0') ||
'.pdf' AS “url_Document”
FROM schema.eell e
JOIN schema.eell_responsible er
ON er.id_eell = e.id_eell
;
STORE EELL_RESPONSIBLE INTO [lib://Address/eell_responsable.qvd] (qvd);
DROP TABLE EELL_RESPONSIBLE;
[EELL_RESPONSIBLE]:
LOAD
“Local Entity”,
“Responsible”,
“url_Document”
FROM [lib://Direccion/eell_responsable.qvd]
(qvd);

Only the lineage of the report is built with the table: [EELL_Responsible] which is the one returned by websocket, instead of building the lineage against the tables that appears in the join: schema.eell and squema.eell_responsible which would be from our point of view the correct thing to do.

Can you please review it and in case you think it is correct, enrich the lineage functionality to take into account the tables used in the query and not only the tables returned by the websocket?

Thank you very much.

@nicolasGutierrezGarcia1970 nicolasGutierrezGarcia1970 added the enhancement New feature or request label Sep 11, 2024
@harshsoni2024 harshsoni2024 self-assigned this Sep 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants