Hi Guys,
when I use below code, lable string is shown;
static void labelId2String21(Args _args)
{
str value;
value = SysLabel::labelId2String2(literalstr('@SYS61013'), 'en-us');
info(value);
}

But,when I use below code, name of variable(labelId) is shown;
static void labelId2String21(Args _args)
{
str value;
str labelId ='@SYS61013';
value = SysLabel::labelId2String2(literalstr(labelId), 'en-us');
info(value);
}

As I haveto send "labelId" with parameter,How I solve this problem?
*This post is locked for comments
I have the same question (0)