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

    in line 219 you assign an array to a text field, and Appian by default concatenates the array by placing a semicolon, that's why you get values as test@test.com;test2@test.com in the database.
    If you change the line 219 as Shubham suggested, it should work correctly for db changes.
    For integration part your code should work fine, i think, no changes needed. 

Children
No Data