Recap of X++ methods in Microsoft Dynamics 365 Finance and Operations apps
Views (78)
Recap of X++ methods in Microsoft Dynamics 365 Finance and Operations apps
- Instance methods
- Objective methods
- Embedded in each object created from class
- Must instantiate object before using method
- Static methods
- Class methods
- Belong to class and created by keyword static
- Do not need to instantiate object before using
- Used to work with data stored in tables
- Main methods
- Class method that’s executed directly from menu option
- Should only create instance of object
- Calls necessary member methods
- _args parameter allows data transfer to method

Like
Report
*This post is locked for comments