My JSON To AL Converter

Since I am very lazy and I didn’t find any AL code generator I decided to develop it on my own. My app gets a JSON file as input and, for each entity present, it automatically generates three files : 1) the AL table ; 2)…

Options VS Enums

To define a variable of type Option, you can’t use the OptionMembers property that’s used on a field of data type Option. You need to list the available options as a comma-separated list after your variable definition. For example:- Color: Option Red,Green,Yellow; Source : KSD Consultancy…