Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Writes a text string into the standard Microsoft Dynamics AX SQL error logfile.
Syntax
public void logfileWrite(str Text)
Run On
Server
Parameters
- Text
Type: str
The text (for example, a bookmark) to write to the logfile.
Remarks
Following an error situation of any kind (which is logged in the logfile), you may want to insert a personal bookmark that explains the current scenario.
Examples
static void myExample(Args _args)
{
SqlSystem SqlSystem;
SqlSystem = new SqlSystem();
SqlSystem.logfileWrite("Recheck the returned data.");
}