Skip to main content

I have written below query in a function to send the message when the check box is checked:

if @work_permit_check_box = 1 /*and @work_permit= 0 checked*/ beginexec tsf_send_message 'Please change the work permit expiration date.', null, 1;end

 

 

The output I am getting.

 

How can I translate this message?

Hi Rucha,

Simple create a Message in your model and translate it in the available languages for your project. More info here: https://docs.thinkwisesoftware.com/docs/sf/messages

The tsf_send_message first parameter is the Message ID. This corresponds with the Message ID as you created in the Software Factory. 

Hope this helps!


Thanks for the reply. I was getting confused by the message_id from the document. I was searching for a numeric id. 

@Mark Jongeling  your explanation was easy and I was able to make it work with translation.