You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to update a single flow inside a process, e.g. to adjust the amount or even delete it from the process. The way I am doing it right now, is to create a new exchange list and update the whole process. That way, all unchanged flows have to be part of the new exchange list again, though.
Is there a way to only change certain flows within a process? Something like
process = client.get(olca.Process, 'fb0d68e9-9a14-431b-ac34-1f9a14c18de8')
for "flow" in process:
if flow.id = "dc50a884-b2f5-4c95-9912-07b8dfb2d497":
flow.amount = 5
client.update(process)
Thanks for any hints!
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to update a single flow inside a process, e.g. to adjust the amount or even delete it from the process. The way I am doing it right now, is to create a new exchange list and update the whole process. That way, all unchanged flows have to be part of the new exchange list again, though.
Is there a way to only change certain flows within a process? Something like
Thanks for any hints!
The text was updated successfully, but these errors were encountered: