Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can any one tell me how to use the Dynamic update action in QV 11 .. Do We need to write macro to use this?
Check my example
Hello,
Yes, you need to write a macro. Look example in QlikView API guide - ActiveDocument.DynamicUpdateCommand.
I think you don't need to write macro anymore. Just create/add an action "Dynamic Update" and fill statement with something like this
UPDATE TestTable SET TestField = 'Test' WHERE TestField='abc';
UPDATE TestTable SET Discount = 123 WHERE TestField='Test';
UPDATE TestTable SET Discount = 123 WHERE UpdateTag=1;
Hi Dix
thanks
Hi Dix,
I am trying to figure out the following scenario in the context of Dynamic Update
Can it is possible,if i update the database then the changes should be reflected in my qlikview file.
The important point to consider is how qlikview associate the updated rocords with qvw with out reload
Please reply me back as u get it
I
Hi ghori.irf,
as far as I figured it out by now, dynamic update changes only the values in memory. As long as your application stays in memory, you should be fine. But you have to make sure, that your data is saved once in a while.
Currently I'm working on using an export action for that. The next reload has to check, if there are any previously exported files (xml, csv,...). You can try to combine this with an EDX-triggered reload.
Regards
Matthias
Dear,
Matthias Dix.
I am too looking for the above same senario as ghori..
so please let me know step wise procedure to adop Dynamic Update ,If possible with an example.
I will be thankful from botom of my heart.
Thanks,
Mukram.
Check my example
Dear,
Matthias DIx.
I am glad to have this stuff ,I refer this and get back to you if i come up with some doubt .
And I am thankful for your Hospitality .
Thanks,
Mukram,
Hi Dix,
I try to implement dynamic update without macro,but its not working.
Please refer the attached file and help me out.