Synchronization of table forcefully in axapta
Declare following variable.
Application application;
TableId tableId;
;
tableId=1212;
You can pass tableid following way to syncronize table forcefully.
application.dbSynchronize(tableId, false, true, false);
This will work in all version of axapta.
Declare following variable.
Application application;
TableId tableId;
;
tableId=1212;
You can pass tableid following way to syncronize table forcefully.
application.dbSynchronize(tableId, false, true, false);
This will work in all version of axapta.