Activity Chaining Issue

Certified Senior Developer
I have a UI where I will upload an excel file and it will be parsed using read excel service and then it will appear in the same UI,as it is connected with activity chaining. But if I upload excel with more than 8 rows, the activity chaining is breaking and it is appearing as a new task.Can you please suggest how to avoid this new task creation, It should continue with the same task.

OriginalPostID-232425

  Discussion posts and replies are publicly visible

Parents
  • The activity chain is likely timing out. You have several options.
    1. Activity chain to a new ui which will describe that the excel processing will happen asynchronously, and direct the users to their tasks. This will force the user to use two tasks, but it will at least be handled gracefully.
    2. Activity chain to a new ui which will display a timer image and gives the user the option to refresh the ui until the asynchronous excel processing is complete in the back end. This will then allow you to continue using the same task.
Reply
  • The activity chain is likely timing out. You have several options.
    1. Activity chain to a new ui which will describe that the excel processing will happen asynchronously, and direct the users to their tasks. This will force the user to use two tasks, but it will at least be handled gracefully.
    2. Activity chain to a new ui which will display a timer image and gives the user the option to refresh the ui until the asynchronous excel processing is complete in the back end. This will then allow you to continue using the same task.
Children
No Data