Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have Qlik On-Prem and would like know the best way to do a partial reload with an app that uses inphinity forms. I need to only do a partial reload when users enter details into the general form and click recalculate? Is it possible to use this recalculate button and then show the new data in a straight table on a sheet. I have been unsuccessful as it still does the full app reload. Not sure when to use ADD, REPLACE or WHAT dimensions need to be the key
Also how would you take into account concurrent users so that if that two people are using it at the same and reloads that both inputs are saved and show
The form consist of checkboxes, dates and and a text
If NOT IsPartialReload() THEN
Set vReloadType = ‘Full Load’;
Pform:
Load
ChangedBy as “Pchanged By”,
ChangedDate as “Pchanged Date”,
IF(“PreviousChecks” =1, ‘Yes’,’No’) as “Previous Check”,
Notes as “PNotes”,
Subfiled(key,’||’,1) as “ID”,
Target
From [lib//Forms Data/PQvd.qvd](qvd);
Tform:
Load
ChangedBy as “Tchanged By”,
ChangedDate as “Tchanged Date”,
Notes as “TNotes”,
key as “Person Name”,
ReferralDate,
DateActioned
From [lib//Forms Data/TQvd.qvd](qvd);
A partial reload can be done using a qlik sense button object and by setting the action to 'reload' and ensuring the 'partial' checkbox is enabled. When a partial reload is done, you can capture the 'partial' nature exclusively in the load script with ispartialreload(). Or, you can use the 'ONLY' key word as shown in the help below.
If you are not using a button you can use trigger a reload using the QLik Sense Engine JSON API
I will look in this but wanted to know if it is possible using the inphinity forms own 'recalculate' button?