insertion of a record in Sql Server From Ax4.0 with out Using Axapta Table

Dudes can any body reply me for, How to insert a record in Sql Server From Ax4.0 with out Using Axapta Table

Using ODBC DataSource

thanks & regrads

Sudvaep

You can use the way Harish suggested in the previous thread:

Connection Con = new Connection();
Statement Stmt = Con.createStatement();
ResultSet R = Stmt.executeQuery(‘INSERT INTO VALUES(…)’);