attempt to read from an OUT parameter Explanation: This parameter is declared as mode OUT which does not allow read access (its value is undefined). User Action: If you wish to read this parameter, then change its mode to INOUT or IN. Otherwise correct the reference to this parameter.