
joan_mckinley asked a question.
We are migrating from Remedy to Service Now. Our current App Portal catalog items have Actions that point to ITSM operations. Are we able to update those in bulk to point to the Service Now Operations in Actions instead?
I have all the tables and was trying to do it in SQL but it looks like there are many columns that need to be updated not just:
[WD_ITSM_Systems].ServiceUrl
[WD_ITSM_Systems].SystemName
[WD_ITSM_Operations].OperationDescription
[WD_ITSM_Actions] - many columns
Do you have a way of doing it, so we don't have to touch each catalog item?
Thanks,
Joan
@jdempsey , we ended up the SQL code in the PowerShell script and used a SQL query to update the packages. The PowerShell script helped me see the relationships between the SQL tables.
We tested in our Dev environment by changing one manually and found the values in the WD_ITSM_Actions table and used this script to change another:
Update [WD_ITSM_Actions]
Set SystemID_FK = 11, ActionID = 38
Where PackageID = 631If you don't see an issue with that, I am going to change all packages with a certain SystemID_FK and ActionID to the values above.
We have a couple more scenarios that will have a different ActionID, so will use similar query for those as well.
Thanks!