Forum Discussion
jeremy_biggs_capellaspace_com
2 hours agoIdeator I
Well, I think I worked it out :-) Instead of using the OnConvert event, I used OnBeforeConvert and just returned the task.Item on success:
Aras.ConversionFramework.Models.ConversionTask task = new
Aras.ConversionFramework.Models.ConversionTask() {
Item = this
};
...do the work...
return task.Item;
This approach did not seem to work with an OnConvert method.
The rule doesn't specify an OnConvert at all and appears to be just fine with that! Hope this helps someone down the line.