Hi Srikant,
In IEE versions, there is step to save record after loading data through spreadsheets and before saving, option is there to delete desired record(s), however, in Clouds version, system automatically saves spreadsheet data with loading.
I don’t think it is a case of missing functionality since IFS has automated the data saving procedure.
Regards
Abdul Rehman
Hi @Srikanth
additional hint/experience from my point of view.
I suppose you’re trying to migrate data using the procedures INSERT_BY_METHOD_NEW or INSERT_OR_UPDATE.
I don’t recommend to use these procedures because of limited possibilities. For very simple migrations where the provided data is always good this might be ok.
My recommendation is to use 2 migration jobs (CREATE_TABLE_FROM_FILE to load the raw data into a “temporary” Oracle table (IC_-table) and then MIGRATE_SOURCE_DATA to fetch the data from the “temporary” table and migrate the data using APIs).
When using the MIGRATE_SOURCE_DATA job then you have much more possibilities. So for example you can also filter “empty” records with a WHERE-clause.
To delete these kind of “empty” records manually several times cost a lot of time.
Kind regards,
Jens