Forum Discussion
SamRichards
Contributor
Hey Eric,
I am not sure I am following your ask, Are you talking about the DM description on the DM itself or you talking about in the task activity while it is running? Can you give us an example of what you might be looking to add, just as a use case?
Thanks,
EricM
2 years agoNew Contributor II
Hi
In fact I've found a solution, using somthing from speciality Planning. It's somethin lke that
Private Sub SetTaskDescription(ByVal si As SessionInfo, ByVal args As ExtenderArgs, ByVal sDesc As String )
Try
Try
'Update the task activity description with the Workflow Information
Dim wfDesc As String = BRApi.Workflow.General.GetWorkflowUnitClusterPkDescription(si, si.WorkflowClusterPk)
Dim description As String = sDesc
Dim dml As String = "UPDATE TaskActivity Set Description = '" & SqlStringHelper.EscapeSqlString(description) & "' Where (UniqueID = '" & args.TaskActivityID.ToString & "')"
Using dbConnFW As DbConnInfo = BRApi.Database.CreateFrameworkDbConnInfo(si)
BRApi.Database.ExecuteActionQuery(dbConnFW, dml, False, False)
End Using
Dim wfDesc As String = BRApi.Workflow.General.GetWorkflowUnitClusterPkDescription(si, si.WorkflowClusterPk)
Dim description As String = sDesc
Dim dml As String = "UPDATE TaskActivity Set Description = '" & SqlStringHelper.EscapeSqlString(description) & "' Where (UniqueID = '" & args.TaskActivityID.ToString & "')"
Using dbConnFW As DbConnInfo = BRApi.Database.CreateFrameworkDbConnInfo(si)
BRApi.Database.ExecuteActionQuery(dbConnFW, dml, False, False)
End Using
Catch ex As Exception
Throw ErrorHandler.LogWrite(si, New XFException(si, ex))
End Try
End Sub
Throw ErrorHandler.LogWrite(si, New XFException(si, ex))
End Try
End Sub
Related Content
- 2 months ago
- 3 years ago
- 7 months ago