Data Validation

Manoj Parmar
Tera Contributor

Hi Team,

I trying the use case for that  I need to perform data validation 

the user sends the data by mail and if any data is missed a mail bot will pick up missed data and send mail to a user 

Like this 

Name :

age :

Subject :

fee :

if fee Miss In a mali body bot picks up the only fee and sends mail to a user 

1 REPLY 1

Alphonsa
ServiceNow Employee
ServiceNow Employee

Hi @Manoj Parmar 

Please find the below design flow to achieve the above requirement

 

Alphonsa_4-1697106148708.png

 

1. Double click on the script component [highlighted] and add the below script
     Return {"Name","age","Subject","fee"}
2. Define the 'Transform Data' as below for 'GetList' method [highlighted].
     
   Dim _str as String
   For Each val As String In Value
  _str += val
   Next
  return _str

Thank You