- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2015 09:38 AM
I need to delete a variable from the Production instance, but however this variable was not present in the DEV. Because of this I created a similar variable and thought of deleting it. Later came to know that pushing the update set with the change I did will not delete the variable from production since both of them have different sys_id. Can any one suggest how to deal with this scenario?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2015 09:58 AM
I would suggest exporting the variable from PROD and importing it into DEV. This way, it would keep the sys_id. You can then delete it in an update set and that update set would apply to PROD correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2015 10:12 AM
Thanks a lot Mike and Deepak. Now I have the same sys_id in DEV instance also.