Assume I have two business objects named Idea and Task. They have a one-to-many relationship (one Idea may have zero or more Tasks, and each Task relates to one Idea).
I want to export the data from these two business objects, and import them into a duplicate bsv, maintaining relationships etc), and I want to do this as a process (rather than Export/Import one BO at a time).
The data export works fine. All the columns and all the rows are exported to appropriate csv files.
I can get Idea data to import, but Task data won't because the export has the shortcut to Idea as a column, and this throws an error. I would have thought that the IMPORT function would know to ignore shortcut columns as they don't have data.
I have searched the forum, and read the documentation, and have tried all combinations of everything, but the error remains.
Is there a trick to importing data into a business object that references (owned by) another business object?