BookmarkSubscribeRSS Feed
isek
Obsidian | Level 7

Hello,

 

I have a project business guide which I want to run only one branch.

Here is my code, but it does not work.

Can somebody help me please

 

 

# Launch the application using the registered prog ID
$eguideApp = New-Object -comObject SASEGObjectModel.Application.4.3

$chemin = "C:\Users\Desktop\test.egp"

$project = $eguideApp.Open($chemin,"")

# Show all of the process flows in the project
$pfCollection = $project.ContainerCollection

$pf=$pfCollection.item("Connexion")
Write-Host " 1 - EXECUTION DU FLUX DE PROCESSUS " $pf.Name
# To RUN a process flow, simply use $pf.Run()
$pf.Run()

$pf=$pfCollection.item("pgm trim1")
Write-Host " 2 - EXECUTION DU FLUX DE PROCESSUS " $pf.Name
# To RUN a process flow, simply use $pf.Run()
$pf.Run()

$project.Close()

$eguideApp.Quit()
1 REPLY 1
veeao
Calcite | Level 5

@isek wrote:

Hello,

 

I have a project business guide which I want to run only one branch.

Here is my code, but it does not work.

Can somebody help me please about

 

 

# Launch the application using the registered prog ID
$eguideApp = New-Object -comObject SASEGObjectModel.Application.4.3

$chemin = "C:\Users\Desktop\test.egp"

$project = $eguideApp.Open($chemin,"")

# Show all of the process flows in the project
$pfCollection = $project.ContainerCollection

$pf=$pfCollection.item("Connexion")
Write-Host " 1 - EXECUTION DU FLUX DE PROCESSUS " $pf.Name
# To RUN a process flow, simply use $pf.Run()
$pf.Run()

$pf=$pfCollection.item("pgm trim1")
Write-Host " 2 - EXECUTION DU FLUX DE PROCESSUS " $pf.Name
# To RUN a process flow, simply use $pf.Run()
$pf.Run()

$project.Close()

$eguideApp.Quit()

Did you resolve it ?

Regards

Veeao

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 641 views
  • 0 likes
  • 2 in conversation