Hi,
when I try to edit the amount of a line of a general journal in excel and I publish it, an error message appears saying:
"A row created in the General_Journals_Excel dataset was not updated. Error message: "Property "Editable" for amount is invalid. [( not px70377860px70377860CoreVisibility ) or ( px70377860px70377860SelectedValue )]"
We have extended the General Journal page in code and added a condition to the editable property for the amount field, which is "Editable = (not X) or (Y);". (X = CoreVisibility and Y = Selected Value)
In Business Central, this field is editable, but when editing in Excel and publishing, the error occurs. I have assigned false to X and true to Y variables throughout the code to ensure that it is always true and editable, but it still does not work.
however, the problem seems to be another one, since I have even tried the following expressions
"Editable = (true) or (true)"
"Editable = (true)"
and it doesn't work either.
but if I set "Editable = true", it works.
could someone help me? thank you