RE: XMLPort, Manage Error, Skip record and continue
Yes, you can handle errors in XMLPort during the import process by using Error Handling Properties.
To skip the record with errors and continue importing the rest of the data, you can set the ErrorHandling property to "Skip". This will allow the XMLPort to continue importing data even if it encounters errors in some records.
Here are the steps to set the ErrorHandling property to "Skip":
1. Open the XMLPort in the designer.
2. In the Properties window, locate the ErrorHandling property and set it to "Skip".
3. Save and compile the XMLPort.
4. Run the XMLPort to import the CSV file. When an error occurs in a record, the XMLPort will skip that record and continue importing the rest of the data.
Note that when using the "Skip" option, the XMLPort will not report any errors for the skipped records. If you want to track the errors and their corresponding records, you can set the ErrorHandling property to "Stop". This will stop the import process when an error occurs and display an error message with the details of the record causing the error.