In AX 2021 SysLabelEdit class is there to modify label. As per my analysis , LabelBulkEditor class is used modify the label . i have tried with below code its not working. Any suggestion to create and update label files against label id
LabelBulkEditor labelBulkEditor = new LabelBulkEditor();
LabelType labelType = SysLabel::labelId2String(nameid
, "ja");
if(labelType)
{
SysLabel::
labelBulkEditor.modify("SYS123", "XXX", "YYY");
Info("done");
}