String templates are a convenient way of mixing literal strings with values from variables:
WRITE |Hello, { lv_name }, nice to meet you!|.
It can also format things like dates. To use the logged on user's date format:
WRITE |The order was completed on { lv_date DATE = USER } and can not be chan...