Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two questions to ask:
1) I want to create a QMC task that is dependent on success of another task but it should reload only first day of every month. And task to which it depends upon is a daily triggered task. So , task should run on 1st day of every month after another task is successfully competed. How it is possible
2) I want to see selections of all users on particular application accessed on access point. I can see bookmarks in QMC. but not selections. Hows it is possible
Ok. the second link was wrong and don't analyzed audit logs. Within the attachment is now a very simple load-routine for the audit-logs with a few fields and a tablebox - I think the meaning of them will be quite self-descriptive. You need only to adjust the path to your log-files.
- Marcus
1) You need to put the logic of the first day of a month inside your application by using something like this in the beginnung of your script:
if day(today()) > 1 then
exit script;
// or alternatively produce an intentional script-error
end if
2) You need to enable the audit-logging within the qmc and then read the logs. For this see:
Instructions on how to enable Audit Logging in the QMC
- Marcus
Thank You Marcus.
Can you Also tell me what impact stopping "qlikview management service" will make on my qmc or access point. This step is mentioned in process to enabling audit logging.
Also, can you give me an example how audit log will display field selections made by user on access point. I cannot find any where in community how this is captured.
The various qlikview server-services could be easily ended and restarted within the taskmanager within the tab services. Whereby I don't think that you need it to enable the audit-logging within the qmc by system/server/logging.
How those data then could be loaded within a qlikview application take a look within the second link from above.
- Marcus
Thank You Marcus,
I have now find the logs for my qmc. But the application attached does not give clear picture how to load data from logs.
Can you provide some link or application that picks data from audit logs.
Thanks in advance
Ok. the second link was wrong and don't analyzed audit logs. Within the attachment is now a very simple load-routine for the audit-logs with a few fields and a tablebox - I think the meaning of them will be quite self-descriptive. You need only to adjust the path to your log-files.
- Marcus
Thank you so much marcus.