
I have this error when I enter Full Name on New or already existing User:
You cannot make this call on table ID 2000000121 from a RecordRef data type when you are using a compilation target other than OnPrem.
BC Ver. 17.6
Service Ver: 17.0.23708
Obviously OnPrem.
I Know this is a Bug, but is there a workaround?
Thankyou,
Hello,
I think that what happens is, that we trigger the event OnAfterDatabaseModify, and you have an extension that is listening to this event, and then makes a call to the modified table, which in this case happens to be a system table.
Likely it is some kind of logging or synching- extension. If you get hold of who made this extension, then they need to check what kind of calls they make from this event. Reads should be OK, but updates not necessarily, but it needs to be tested. Or they can compile the extension with Target = OnPrem, in which case they will not have this restrictions.
I hope this helps.