Update a record in x++
static void Job2UpdateTableData(Args _args)
{
// Create table buffer
Table1 table1Buffer; // tablename tablebuffer
// the above and this code update the all the rows
update_recordset table1Buffer setting
Name="Rambo" // new value
where table1Buffer.Name == "Rumman Ansari"; // old value
info("All Data Updated");
}
Comments
Post a Comment