Hi Ablikim,
Can you try upgrading/reinstalling the following module with the latest version?
OData Connector for SAP solutions
Also, check if any other modules that you have installed need to be updated (such as 3D Viewer, etc).
I hope that solves your issue, if it does please remember to mark the question as solved, best regards!
Error related to rollbackTransAction()
:
cannot find symbol synchronizedContext.rollbackTransAction();
rollbackTransAction()
is either misspelled, not defined, or not in the scope where it's being called.IContext
interface or the class of synchronizedContext
. Also, ensure that synchronizedContext
is of the correct type where this method exists.Error with setStatus
in IMxRuntimeResponse
:
method setStatus in interface IMxRuntimeResponse cannot be applied to given types;
setStatus
method is being called with the wrong number of arguments. It seems to expect an int
, but it's being provided with an int
and a String
.IMxRuntimeResponse
to see the correct usage of setStatus
. Likely, you need to either pass only the status code or use a different method to set the error message.