To Insert Label by Code in Axapta in any language you can try below code. This code will show you label code as output in message box.
You can try this code to do label creation fast to save your time . I hope this really help you.
SysLabelEdit SysLabelEdit = new SysLabelEdit();
info(strFmt("%1", SysLabelEdit.labelInsert('En-US', 'Test Label', 'Test Label',
SysLabelApplModule::None)));
You can try this code to do label creation fast to save your time . I hope this really help you.