In additional under user name I need contact info

Siva82
Tera Expert

Hi team,

 

I have requirment. I need add update by contact information(ex : mail or ph no) long under the name in additional comment.

I have attached screenshot as for screenshot I need add contact information in additional comment 

1000052219.jpg

 

Thank you in advance 

Sivananda Reddy 

2 REPLIES 2

Sanjay191
Tera Sage

Hello @Siva82 

You can create the After update BR and on change of comments you need to trigger and you need to get the current login users details by gliding on users table and format a string according you requirement like "Updated by"+username +"ph:"+phone+ etc.
and at last you need to update the comments by this string .

If you found this helpful, please give a thumbs up OR mark it as the solution. Thank you!

Sourabh Tarlekr
Kilo Sage

Hi @Siva82 

 

Add below script in your business rule to add the email address.

 

current.comments="Email: "+ gs.getUser().getEmail();

 

Regards,

Sourabh