The Below Diagram will help you installing and Planning your PPS SP2 Deployment.
Just for the memo: you can’t install PPS SP2 on the free trial version of PPS. Still working on a work around
The Below Diagram will help you installing and Planning your PPS SP2 Deployment.
Just for the memo: you can’t install PPS SP2 on the free trial version of PPS. Still working on a work around
Working with PPS programmatically requires an understanding on the PPS Web Services
Below is the first blog entry to help other on working with PPS programatically to do some actions
void CreateScoreCard ()
{
Scorecard scorecard = new Scorecard();
scorecard.Guid = Guid.NewGuid();
/////////Even the following Lines are optional,
///If you didn’t enter a name for the scorecard it will be created with an empty name
BpmPropertyText NameProperty = new BpmPropertyText();
NameProperty.Text = "The ScoreCard";
scorecard.Name = NameProperty;
//To publish the scorecard on the server
Publisher.CreateScorecard(scorecard);
}