Group: Forum Members
Posts: 524,
Visits: 30K
|
If you are copying data, are you copying it into the same BO? I mean, if you start with 10 records in the BO, do you want to end up with 20 records with just a different Qnumber for the added 10?
If so, I would create a new instance of the BO, iterate the BO you want to copy from using Getenumerable as Greg showed, and use newrow() in the second BO, generating a new PK and copy the field values to the new BO record, substituting the Q number you want.
|