Deactivate CIs using GRLOADER
search cancel

Deactivate CIs using GRLOADER

book

Article ID: 109693

calendar_today

Updated On:

Products

CA Service Management - Asset Portfolio Management CA Service Management - Service Desk Manager CA Service Desk Manager

Issue/Introduction

How can the CIs be deactivated using GRLOADER?

Environment

Service Desk Manager 17.3 and higher

Resolution

The field CI can be deactivated using the GRLoader.

To do this the field "delete_flag" must be added in the xml file, i.e.:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<GRLoader>
  <ci>
    <id>uuid</id>
    <delete_flag>1</delete_flag>
  </ci>
</GRLoader>


Where

value 1 = is inactive
value 0 = Active.
uuid= The UUID of the CI to deactivate

Example:

Customer needs to inactive CI called "CI_test":

1. select the UUID from CI_test

 select own_resource_uuid from ca_owned_resource where resource_name like 'CI_test'
 



2. Build the xml with the value gotten from step 1, called load.xml

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<GRLoader>
  <ci>
    <id>64A20F2717D1A043A68FBA4740A4216B</id>
    <delete_flag>1</delete_flag>
  </ci>
</GRLoader>

 

3. Execute the update
grloader -u <username> -p <password> -s http://localhost:8080 -i load.xml -a
 

Additional Information

-Information about GRLoader Command:

17.3:
GRLoader Documentation

-To check for duplicated records and recognize which record have to be deactivated please check the cora matrix that explain how the application check records to update or create new records, following this documentation regarding CORA:

Check for duplicated CI Records (PDF)

17.4:

GRLoader Documentation