Tips And tricks that will help you as developer / implementer that is using MS Dynamics 2009 / 2012 / D365
Get link
Facebook
X
Pinterest
Email
Other Apps
How write warning message using X++ in AX 2009?
Sometimes you need to warn the user if the user make something wrong simply you write the following code : void warning _message() {
warning("Please Read All the Lines");
}
this message will appear to you when you call this function
Comments