Open development workspace and click on Tools --> Label --> Label editor Search your label by code or description anc click "Used By". Here you can find all label reference in code
Category: Labels
AX / D365FO – Get label text in different languages
To get a label text in a specific language you can use labelId2String() method of the SysLabel class. If you avoid to specify the language the method will use the default system Language SysLabel::labelId2String(literalstr('@SYS1'), 'en-us'); //will show "Time transactions" SysLabel::labelId2String(literalstr('@SYS1'), 'it'); //will show "Transazioni temporali"
AX – D365FO – How to: Find a Label (Label editor) in AX2012
To search for a label string Click Tools > Label > Label editor.Type the string you want to search for in the Find what box, then click Find now. To search for a label ID Click Tools > Label > Label editor.Enter a label ID in the Find what box, then click Find now. NoteLabel IDs consist of the @ symbol
AX – D365FO – Get Field, Label, Type and Name using X++
Following are they way to get Table Labelstatic void Job21(Args _args){ info(TablePName(CustTable));} Following are they way to get Field Label of the tablestatic void Job21(Args _args){ info(fieldPName(CustTable,AccountNum));} Following is the way to find Label , Name and Data type of all fields of any table.static void Job21(Args _args){ DictTable … Continue reading AX – D365FO – Get Field, Label, Type and Name using X++
D365FO – AX – Copy a label and insert into X++ code
Open Label file, select the label, right click and choose "Copy" Paste the label into code wrapped by double quote