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);
}
No comments:
Post a Comment