Skip to main content
November 16, 2023

Datamanagement sequence

  • November 16, 2023
  • 2 replies
  • 0 views

Hi Everyone,

I have requirement to run 4 data management steps in parallel, is there a way to run 4 data management steps same time?

 

Thanks in advance.

 

 

2 replies

November 16, 2023

Hi Sandeep

I haven't tried to run data management steps in parallel before, but what you could try is to put each step in it's own sequence and then kick them all off at once using a business rule: 

 

BRApi.Utilities.StartDataMgmtSequence(si, "Sequence 1", Nothing)
BRApi.Utilities.StartDataMgmtSequence(si, "Sequence 2", Nothing)
BRApi.Utilities.StartDataMgmtSequence(si, "Sequence 3", Nothing)
BRApi.Utilities.StartDataMgmtSequence(si, "Sequence 4", Nothing)

 

This should start each of them in the background, so I think it will effectively run them in parallel.

Regards,

Mark

December 12, 2023

Hi Mark, How would I pass a variable (user selection from a parameter) from the initial Data Management Sequence to the next DM step?

I am running into errors when using the code when trying to pass the Entity and Scenario variables.  

Thanks, Stephen

December 12, 2023


BoscoBear21_0-1702395792381.png

 

sandeeprAuthor
November 16, 2023

Thanks MarkBird I will try this and let you know.