macros recap in Microsoft Dynamics 365 Finance and Operations apps
Macros are constants, or pieces of code, that are being taken care of by the compiler before the rest of the code to replace the code where the macro is used with the content of the macro.
There are three different types of macros: stand alone macros, local macros, and macro libraries.
#define.Number(200)
static void macro1(Args _args)
{
#MacroTest
;
info(strfmt("Text: %1. Number: %2", #Text, #Number));
}
*This post is locked for comments