Business rule Add Message Language support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2016 12:39 AM
Hi
I have created a business rule which validates that certain fields are populated while updating a record
I have selected the checkbox Add Message and put message in the field provided
I was wondering if I can provide language support on the message using this feature
I need to add message in English and Spanish
All ideas and experiences are welcome
Regards
Hetal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2016 01:28 AM
var spmsg='pedÃÂ a varias empresas que me hicieran un presupuesto de or me presupuestaran la obra';
var enmsg='Hi how you doing';
if(currrent.user.language=='spanish')
{
gs.addInfoMessage(spmsg);
}
if(currrent.user.language=='en')
{
gs.addInfoMessage(enmsg);
}
Thanks
Akash Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2016 01:31 AM
Hi Akash
Thank you for your response.
This is using script
We can achieve it using Message functionality where we can configure the message for different languages
But I was wondering if I can achieve this without using any script
Regards
Hetal