gandalf98 Posted August 27, 2010 Share Posted August 27, 2010 I am trying to perform some data validation before processing daily customer files. Is there a command or function to abort processing data and throw an error from within an OnJobStart rule? Link to comment Share on other sites More sharing options...
Dan Korn Posted August 27, 2010 Share Posted August 27, 2010 Sure, just do this in OnJobStart: FusionPro.Composition.composeAllRecords = false; FusionPro.Composition.startRecordNumber = 10000; FusionPro.Composition.endRecordNumber = 0; ReportError("Error in data validation - aborting"); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.