Hi;
We try to upgrade version 7.17 to 8.1
in our solution we use such script (in attachment) after upgrade FindFlowElemetbyName return null.
We try to find wait for signal element.
thanks for any suggestions.
Regards
Tomek
Like
Hello!
Unfortunately, the file is not available.
Please re-send it once again.
Alona Dolya,
Hi.
that is ScriptTask we use
private bool UsrSetClaimRequestCrSignalScriptTaskExecute(ProcessExecutingContext context) {
var uc = Get<UserConnection>("UserConnection");
var claimSignalDAO = new ClaimSignalDAO(uc);
var signalId = Guid.Parse(context.Process.FindFlowElementByName("UsrClaimRequestStartSignals").GetPropertyValueByPath("RecordId").ToString());
var signalTypeId = claimSignalDAO.GetSignalType(signalId);
var crId = claimSignalDAO.GetParameterGuid(signalId);
Set("UsrClaimSignalType", signalTypeId);
Set("UsrClaimRequest", crId);
return true;
}
Hi;
Does anyone have idea why script element do not see the start element by name.
Regards
Tomek