Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone, I am hoping someone out there will have a solution to this!
My goal is to have my Qlik App run a REST API POST call that triggers a databricks notebook with parameters but only after the user has clicked a button that triggers a partial reload(where I want to store the script that trigger sthe api post call).
I am working on an app in Qlik Sense and am trying to run a REST API POST call but ONLY on a Partial Load. I configured a REST connector called WIDGETS_POST that successfully connects to and sends string parameters to the databricks job.I also am able to run the call if the code is in the Main section of the Qlik Load Editor and I click "Load Data" manually. The code that works successfully but ONLY when in the Main Section is below:
I created a new section in my Qlik Load editor and called it "Partial Load" and i added the code :
If (IsPartialReload()) THEN
END IF;
However every single time I click the button that triggers a partial reload, the parameters are not sent and the call is not made. I have seen some documentation about needing to use REPLACE or ADD in front of the Table name in your Partial Reload but it seems to be difficult to configure with the SQL SELECT statement.
ANY help at all would be GREATLY appreciated this has been driving me up the wall! My end goal is to have a user make some selections from a filter that gets saved into a variable and is passed through this api call but I cant seem to get the button to trigger the call at all.