Accessing data in another incomplete task

Let's say you have 2 tasks running in parallel and you wanted each person to see each other's work while they are completing it. It seems like the only way to achieve this is to put a "Save" button inside that task that writes to a CDT and returns the user to the task. Any simpler ways you can think of that doesn't involve putting a bunch of loop back in the process?

OriginalPostID-237517

  Discussion posts and replies are publicly visible

Parents
  • Have you given a thought to using a!writeToMultipleDataStoreEntities() function? This function allows you to write data to database on saveInto of a SAIL component. This will avoid any form submission and looping back. You can choose to place a Save button on the form that invokes above function and writes data to database table without submitting a form.
Reply
  • Have you given a thought to using a!writeToMultipleDataStoreEntities() function? This function allows you to write data to database on saveInto of a SAIL component. This will avoid any form submission and looping back. You can choose to place a Save button on the form that invokes above function and writes data to database table without submitting a form.
Children
No Data