Hi, I'm getting this error in the sxmb_moni: System.InvalidOperationException: Instance validation error: 'PROVISION' is not a valid value for OperationTypeEnum.
I know that it means that 'PROVISION' is not valid as a value but the thing is that if the input is 'provision' with lower case then it is accepted. and since it is a xslt mapping then i need to correct it in the code.
But I have tried almost everything without getting any positive result. I basically doesn't understand the following parameters:
<simpleType name="OperationTypeEnum">
<restriction base="string">
* <enumeration value="provision"/>*
* <enumeration value="PROVISION"/>*
at first there were only 'provision' but i thought that if I add 'PROVISION' into the enumeration value then it would be accepted but it doesn't. I just want to make it accept upper case input.
can somebody help with this? // Thanks