Hi,
I made a function to read from a table with pagination, rowskip etc...It works well with most field filter but some of the fields are a mystery (while confirmed existing in the table I'm trying to read).
For ex:
await foreach (var r in _sap.ReadPagedAsync("DD02T", new[] {"TABNAME","DDLANGUAGE","DDTEXT"}, null, new List<string> { $"TABNAME = '{table}'", $"DDLANGUAGE = '{_spras}'" }, _pageSize))
DDLANGUAGE has been a huge problem in table DD02T, now the only workaround that I have is to go through the hundred of thousands of lines and filter one by one using the DDLANGUAGE because it wouldn't work. We only get a truncated error: "The parser produced the error: "DDLANGUAGE" is not"
I got the same issues with one or two other fields but I can't remember.
Any experience like that before ? Any feedback or help would be much welcome.
Best.