Quantcast
Channel: My Errors & My Solutions
Viewing all articles
Browse latest Browse all 123

HOW TO show BigText in a message window in C/AL

$
0
0

My Errors & My Solutions
My Errors & My Solutions - It Could Happen To You

According to the MSDN documentation in the link BigText Data Type

"cannot be shown in a message window"

This example requires that you create the following variables:

Name DataType Subtype
varBigText BigText

It is true that you cannot insert the BigText in a message

MESSAGE(varBigText);

HOW TO show BigText in a message window in C/AL?

You can show the content of the variable easily using the FORMAT Function (Code, Text) to convert the BigText in a String.

MESSAGE(FORMAT(varBigText));

Did my HOW TO help you? Leave a reply.

HOW TO show BigText in a message window in C/AL
Eclipses


Viewing all articles
Browse latest Browse all 123

Trending Articles