Redirect to interface

Hi All,

My requirement is if any error comesup then it has to redirect to the same interface to modify the form and then resubmit the form again . IN the 2nd interface (which is same as 1st) I'm getting the below error .can someone please help.

An error occurred while evaluating expression: Error.message:AC!error.body (Invalid index: Cannot index property 'body' of type Text into type IntegrationError) (Data Outputs)

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to ZAINAB

    Yes, subprocesses can start without a start node - they begin wherever the parent process flow enters (EmailIntegration). When 2ND UIT loops back to EmailIntegration, it does NOT create a new subprocess instance - it continues in the same one. That's the key benefit: one subprocess instance handles all retries internally until it completes through success or reaches max attempts. This avoids the multiple duplicate executions problem.

Children