My record type title displays some dynamic data that needs to be refreshed before the related action is completed, does anyone know any way to achieve this?
Discussion posts and replies are publicly visible
If the dynamic data is all contained in the Record in question, can't you just put the Write Records node first and do the rest asynchronously?
If the dynamic data is elsewhere, I assume you'll have to either write or sync the related Records.
More details would be helpful.
Hello Mat, this particular related action has multiple user input tasks in it, we need to see the change in the records title as soon as the user changes that particular value in the record (using a custom picker field), even if the form has not been submitted yet.
So in the first user input task, can't you have a a!writeRecords to persist the change when the person tabs out of the field?
Someone had a similar question here: community.appian.com/.../pass-a-variable-to-another-interface-through-a-recordtype-related-action
Saving the information to DB is not the issue, the thing is Records title does not get refreshed until the related action is completed.
And you are doing the save directly on the field on the interface and not in the process? Don't know how that is possible.
I don't follow. Some screenshots would be helpful.
In the above image, I need to show the new value for the product id in the records title, it could be either as soon the user changes the value in the field or when the user clicks on the save button and move on to the next screen.
Just verified and this is not possible. I would recommend building out your own custom Record View using url parameters in lieu of the built in Record View if you want this.