What library should be used to compile the pega defined functions
Hi,
I need to run set of actions on click of a button.Following are the actions.
1.Run datatransform.
2 Refresh the Section
3 Finish Assignment.
I want to Skip the 3rd action based on the property set by 1st action.I tried using the when condition on Finish Assignment but it din't worked(Finish Assignment didn't triggered for both positive and negative scenario).So i decided to write a script function to clear the queue for negative scenario.
if(x==false) {
pega.control.actionSequencer.clearQueue();
}
but while i'm trying to save i'm getting following error
"Pega cannot be resolved .Library failed to compile"
Can anyone suggest what should be done.