Hi,
I need if possible to do a mass update of all the email address for each of the employees of a company which is one of our contacts in iMIS. Given the ID of the company, I could easily get a list of the IDs of it's employees, but is there any way using the iMIS front end to do a mass update of the email addresses, which are fields of a Business Object? For example, does anyone know if this could be done by an IQA or by a Report of some kind?
Thanks in advance for any help you can give.
Updates through IQA to excel.
Writing to the database through an IQA or report is not really going to work, since both of these are read only tools.
Once in excel, add a few columns around the pasted query results to say something like:-
"Update Name set email = 'newemail'' where ID = 'ID''
Then copy the SQL statement fields down around all the results - this would produce a SQL command line for each email adress that needs to be updated. It also gives you the flexibility to manipulate data in excel.
Copy and paste the whole thing into query analyser and run to do the updates. (Test with a single line from excel first...)