How to add values in each row


I'm currently passing emailaddresses in each line but when i submit it is storing values as test@test.com;test2@test.com  but it has tostore in db as in new line and it has to be passed to an integration as {"test@test.com,test2@test.com"} 

Can someone please help

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to ZAINAB

    You will have one process model which is calling this interface. So when you submit the form completes and that process model resumes. So one is your parent process. 
    Next you are starting the cons!GASR_WRITE_REQUESTS process model. This has a process parameter Emails to which you are assignign the local!formattedEmailString. 


    First question is what is this process model doing -cons!GASR_WRITE_REQUESTS? 

    Next, assuming the parent process has a pv!FormattedEmails - are other cdt fields getting updated properly in the parent process?

Children