Skip to main content
Newcomer
February 8, 2023
Solved

Buffer cannot be null, updating workflowview.xml

  • February 8, 2023
  • 1 reply
  • 0 views

When trying to update another user's workflow view within OS, I'm seeing the following error. Replacing the current file with an updated xml works but I would like to avoid that if possible. Any ideas?

cmloperfido_1-1675866646443.png

 

 

Best answer by JackLacava

Modifying that file directly is not really a supported approach... There is a decent risk of syntax errors, among other things. If you really need to, you can manipulate it via rules using the standard System.Xml library from .Net.

1 reply

OneStream Employee
February 9, 2023

Modifying that file directly is not really a supported approach... There is a decent risk of syntax errors, among other things. If you really need to, you can manipulate it via rules using the standard System.Xml library from .Net.

Newcomer
February 9, 2023

Thanks for the response, Jack!