Hi Torsten,
If you change a value of an object without commiting it in a microflow, the change is not reflected in the database, but only happening in memory in the transaction of the microflow.
Thus, you can simply use the “Change object” activity with Commit set to “No”.
Make sure to set “Refresh in client” so that the change is reflected in the state of the client.
In your save microflow, you commit the object using the “Commit object” activity.
Hi Torsten, you can even use a nanoflow for this functionality. From what I understand, you only want to change the $Artikel/EKDatum to the current day. Hence, you can use a nanoflow with a change activity in which you change this attribute to the current day. Don't forget to put a refresh on this change activity, because otherwise the user will not see the change on their page. Hope this helps.
Somethimes things are so simple but sorry, i didn’t saw that ;-(
Thanks also for the hint with the nanoflow but i selected the MF without commit.
So the picker gets set in the UI and if he saves than its stored otherwise not.
Thanks again!!