Data Validation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2023 11:45 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 03:26 AM - edited 10-12-2023 03:27 AM
Hi @Manoj Parmar
Please find the below design flow to achieve the above requirement
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