Can't update the table

Hi,
I tried to use the following in cxGrid. But it can’t update the records. If I use the other type of dataset, it doesn’t matter that can update the records. TDAMemDataTable is using “FillWithDASql”. If not using “FillWithDASql”, that’s work fine.

with cxListView do
begin
for row := 0 to Controller.SelectedRowCount -1 do
begin
controller.FocusedRow := Controller.SelectedRows[row];
DataController.DataSet.Edit;
DataController.DataSet.FieldByName(‘IssueCode’).AsString := hrdGuid;
DataController.DataSet.Post;
SP_OCartonHrd.ApplyUpdates;
end;
end

Hi,

Check that you have specified LogicalName.
It should correspond to a table in the schema

Hi,
I already specified LogicalName as “SP_OCartonHrd” and this table exsits in schema.

image

Hi,

I can’t reproduce this issue with simple testcase -
testcase.zip (91.2 KB)

Note: this is client for Relativity Server.

Hi,
Noted with thanks. I used another solution to solve my problem first.