You can access the work unit and the process name. Is there a variable for the WorkTitle for the work unit?
You can work with the Workunit like other Business classes. You can use the Landmark Transaction Node to query and take actions (like Update)
"WorkUnit" is a variable when a process runs on the server. You can use that variable in your Landmark Transaction to either query information or update. Below is an example of the string inside a landamark transation to update the Worktitle for the current workunit.
_dataArea="<!appProdline>" & _module="pfi" & _objectName="PfiWorkunit" & _actionName="Update" & _actionOperator="NONE" & _actionType="CreateUpdateDelete" & _runAsUser="" & _authenticatedUser="" & _pageSize="30" & _relationName="" & _setName="" & _asOfDate="" & _effectiveDate="" & PfiWorkunit="<!WorkUnit>" & WorkTitle="This is an updated Work Title"
I may have misunderstood the request. There is a Variable called "Description" that starts with the same value as what the WorkTitle of the WorkUnit is.
Yes, I was looking for the variable. I thought it was WorkTitle. I did not want to have to query PfiWorkunit unless I had to do so.
I have a similar question about the worktitle as well. Are we able to assign variables who's values will change later on in an IPA?
For example, if I assign a variable to the worktitle field in a landmark transaction node, and at some point in the IPA, the variable changes because an end-user changed the value of the field to a different value in a form, is it possible to have the worktitle update as well?