Convert manual services to application services using API
Summarize
Summary of Convert Manual Services to Application Services Using API
This guide explains how to convert manual services to application services using a JavaScript API in ServiceNow. As manual services are no longer supported, it is crucial to transition to application services to enable effective service performance monitoring and health issue identification.
Show less
Key Features
- Manual services are moved from the Manual Services table to the Mapped Application Service table during conversion, retaining all key attributes like name, owner, and operational status.
- Configuration items (CIs) associated with manual services are preserved in application services.
- The process includes querying the CMDB for the latest CI changes and applying CI impact rules.
- Conversion is controlled by the sa.service.maxciservicepopulation property, which defaults to 1,000 connections, to avoid performance issues.
- Application services do not support certain CI types; these must be removed prior to conversion.
Key Outcomes
After conversion, only CIs assigned to the same domain as the application services will be retained. For successful conversion, ensure all necessary automation is in place, and run conversions in smaller batches. The JavaScript API to be used is:
BusinessServiceManager.migrateManualToApplicationService(String serviceid)
Successful execution returns true, while failure returns false. For example, to convert a manual service with sysid 451047c6c0a8016400de0ae6df9b9d76, the following code can be executed:
var bsManager = new SNC.BusinessServiceManager();
var res = bsManager.migrateManualToApplicationService("451047c6c0a8016400de0ae6df9b9d76");
You can use a JavaScript API to convert existing manual services to application services. Event Management can use application services to monitor service performance and identify health issues.
- The manual service record is moved from the Manual Services [cmdb_ci_service_manual] table to the Mapped Application Service [cmdb_ci_service_discovered] table by changing the record class.
- All the original manual service attributes, such as, name, owner, and operational status, are retained in the application services.
- The configuration items (CIs) of the manual service are retained in the application services after the conversion.
- The system queries the CMDB for the latest CI changes and applies CI impact rules.
Attempting to process more CIs than the value specified in the sa.service.max_ci_service_population property causes the operation to fail.
Run the conversion process in small chunks of approximately 10 at a time, to make it easier to pinpoint the problematic service in the event of a conversion problem.
- cmdb_ci_endpoint
- cmdb_ci_translation_rule
- cmdb_ci_config_file
- cmdb_ci_qualifier
- cmdb_ci_application_cluster
If your ServiceNow instance uses domain separation, the conversion fails if CIs from multiple domains are in the same service. Replace or remove relevant CIs before conversion. The converted application services contains only CIs assigned to the same domain as the application services.
The JavaScript API is:
BusinessServiceManager.migrateManualToApplicationService(String service_id)| Name | Type | Description |
|---|---|---|
| service_id | String | sys_id of the manual service to be converted |
| Type | Description |
|---|---|
| Boolean | true for a successful conversion, false for a
conversion that failed |
sys_id of an existing manual service is
451047c6c0a8016400de0ae6df9b9d76, run the following API to convert it
to an application services:var bsManager = new SNC.BusinessServiceManager();
var res = bsManager.migrateManualToApplicationService("451047c6c0a8016400de0ae6df9b9d76");