Changed how Loader class processes 16-bit APL files
Added ReviewDate property to ProcInfo class Changed how RevDate and ReviewDate values obtained from 16-bit data Added AddSlaveNode and AddSlaveItem methods to ConfigInfo class Added validity check to verify Procedure Set Path and Process Only In Location are in synch
This commit is contained in:
@@ -320,6 +320,14 @@ namespace DataLoader
|
||||
}
|
||||
}
|
||||
}
|
||||
//added by jcb 20121127
|
||||
//check is ProcedureSetPath contains ProcessOnlyInLocation
|
||||
if (ProcedureSetPath.StartsWith(ProcessOnlyInLocation) == false)
|
||||
{
|
||||
sb.Append(ErrorPrefix + "Check Process Only In Location value is pointing to similar directory as Procedure Set Path\r\n");
|
||||
ErrorPrefix = "";
|
||||
}
|
||||
//end added by jcb 20121127
|
||||
// BackupFileName = Has to be non-blank
|
||||
if ((BackupFileName ?? "") == "")
|
||||
{
|
||||
|
Reference in New Issue
Block a user