Subscriber portal
Writes a text string into the standard Microsoft Dynamics AX SQL error logfile.
public void logfileWrite(str Text)
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.
static void myExample(Args _args) { SqlSystem SqlSystem; SqlSystem = new SqlSystem(); SqlSystem.logfileWrite("Recheck the returned data."); }