Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
BuTbka
Creator II
Creator II

QlikView API FinishedTime property

Hi!
There is a bug in API.
QlikView API FinishedTime property is actually "Last execution" property on Task Detail tab in QMC and it is equal "Execution Started" on Task History tab. 
It's very useful in the API to be able to get the start time, finish time, and duration.
Can you implement this?

Labels (1)
  • API

1 Solution

Accepted Solutions
DaveChannon
Employee
Employee

Hi @BuTbka 

For a bug, the best route is to open a support case at: https://community.qlik.com/t5/Support/ct-p/qlikSupport?launchChat=1 

For the additional API fields, I recommend creating a topic (first check to see if the idea already exists) on our ideation board at https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight - this is watched by our Product Managers for each product.

View solution in original post

3 Replies
DaveChannon
Employee
Employee

Hi @BuTbka 

For a bug, the best route is to open a support case at: https://community.qlik.com/t5/Support/ct-p/qlikSupport?launchChat=1 

For the additional API fields, I recommend creating a topic (first check to see if the idea already exists) on our ideation board at https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight - this is watched by our Product Managers for each product.

NadiaB
Support
Support

Hi @BuTbka 

Is there any particular reason of attempting to get this through API? The Governance Dashboard can show that information 

https://help.qlik.com/en-US/governance-dashboard/Content/QV_GovDashboard/Getting-Started-with-the-Go...

 

NadiaB_0-1677620777914.png

Hope it helps!

Don't forget to mark as "Solution Accepted" the comment that resolves the question/issue. #ngm
BuTbka
Creator II
Creator II
Author

Hi @NadiaB 
Thanks for reply.
We use qlikview in integration with other systems. And that is why GD cannot be used.
GD we also use, but in other cases.
I wrote some workaround for that on PS

 

$startTime = [datetime]::ParseExact($task.Extended.FinishedTime, "dd.MM.yyyy H:mm:ss", $provider)
$task.Extended.LastLogMessages -match '(?<=Task Execute Duration\=)(?<Hours>\d+)\:(?<Minutes>\d+)\:(?<Seconds>\d+)' > $null
$finishTime = $startTime.AddHours($matches.Hours).AddMinutes($matches.Minutes).AddSeconds($matches.Seconds).ToString("dd.MM.yyyy HH:mm:ss")