web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

Community site session details

Community site session details

Session Id :

macros recap in Microsoft Dynamics 365 Finance and Operations apps

Rahul Mohta Profile Picture Rahul Mohta 21,032

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));

}

Comments

*This post is locked for comments