catalog

Deepika Ravindr
Tera Contributor
 
1 ACCEPTED SOLUTION

@Deepika Ravindr 

 

Please check the below screenshot, this is a entry from live_notification table, for every mentioned name in the worknotes/comments it will make a entry in that table

 

PrinceArora_0-1695539617189.png

 

You can see "field_name" as work_notes and this email script is working on the table "live_notification", please add a check in your email script:

 

if(current.field_name == "work_notes"){

//Execute your  worknotes template here OR customise message OR if you want to make it specific for a table you can also add a table check above

}else{

// you can execute normal execution whatever was present earlier

}

 

I hope you understand!

 

If my answer solved your issue, please mark my answer as  Correct & 👍Helpful based on the Impact.

View solution in original post

11 REPLIES 11

@Deepika Ravindr 

 

Please check the below screenshot, this is a entry from live_notification table, for every mentioned name in the worknotes/comments it will make a entry in that table

 

PrinceArora_0-1695539617189.png

 

You can see "field_name" as work_notes and this email script is working on the table "live_notification", please add a check in your email script:

 

if(current.field_name == "work_notes"){

//Execute your  worknotes template here OR customise message OR if you want to make it specific for a table you can also add a table check above

}else{

// you can execute normal execution whatever was present earlier

}

 

I hope you understand!

 

If my answer solved your issue, please mark my answer as  Correct & 👍Helpful based on the Impact.

@Deepika Ravindr 

 

Please accept the solution if it has answer your query!

 

Thanks