In a SAP MII transaction, I use a Dynamic Transaction Call to call a subtransaction. I would like to check if this transaction provides an output parameter of a given name. (Not if its value exists but if the property itself is available.)
Is there any way to do this apart from blindly linking to the expected property, defining ThrowOnLinkError = true
and catching a possible exception?
Sure you can: use
Catch
blocks and then addAssignment
block where you assing local variable:ThrowOnLinkError = true
or log it by adding aTracer
block depending on how you want to receive the error.