Using comments in XML Port Data

Setup data is one of the hardest things to keep strait in Dynamics NAV. If you have multiple developers on the same database, they might be modifying setup data to develop new features or testing for bugs. When you have setup data being changed constantly, you…

Format XML standard

When you have to format C/AL variables (numbers, dates/times, booleans) for exchange with other apps, call FORMAT(variable,0,9) instead of simply FORMAT(variable). The format 9 formats the variable according to XML standards, and this value can then be interpreted correctly on any system with any regional settings.…