Skip to main content
November 27, 2024
Solved

Task Activity

  • November 27, 2024
  • 2 replies
  • 0 views

Hi,

Out of Curiosity, 

Is it possible to update Task Activity.

Best answer by sameburn

Hi

You would use this BRApi to control the display of (a) the Task Activity Description and (b) the Percentage Complete value for the progress of a running task that is executed by Data Management through an Extender Business Rule or Data Management Workspace Service (we need to pass in ExtenderArgs).  

Dim bValue As Boolean = BRApi.TaskActivity.UpdateRunningTaskActivityAndCheckIfCanceled(si, extenderArgs, activityDescription, percentCompleteToAdd)

Updating the percentCompleteToAdd variable on the Task Activity window will only affect the Display and not make the process run more quickly. For Example, here I am able to control what gets displayed in the Task Progress window using this BRApi e.g.


sameburn_0-1732729637724.png


sameburn_1-1732729654308.png

sameburn_2-1732729683578.png

Hope this helps

Thanks

Sam

 

 

2 replies

November 27, 2024

I really wouldn't. What's the requirement?

April 21, 2025

Why wouldn't you?

November 27, 2024

I have not personally used this function, but it looks like BRApi.TaskActivity.UpdateRunningTaskActivityAndCheckIfCanceled() will allow you to do so.

sameburnAnswer
November 27, 2024

Hi

You would use this BRApi to control the display of (a) the Task Activity Description and (b) the Percentage Complete value for the progress of a running task that is executed by Data Management through an Extender Business Rule or Data Management Workspace Service (we need to pass in ExtenderArgs).  

Dim bValue As Boolean = BRApi.TaskActivity.UpdateRunningTaskActivityAndCheckIfCanceled(si, extenderArgs, activityDescription, percentCompleteToAdd)

Updating the percentCompleteToAdd variable on the Task Activity window will only affect the Display and not make the process run more quickly. For Example, here I am able to control what gets displayed in the Task Progress window using this BRApi e.g.


sameburn_0-1732729637724.png


sameburn_1-1732729654308.png

sameburn_2-1732729683578.png

Hope this helps

Thanks

Sam

 

 

ShivangiAuthor
December 3, 2024

Thank You! This was really helpful!