- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise
- >
- ServiceNow CMDB Mapping with custom inputs
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2023 04:13 AM
08-16-2023 04:13 AM
Hello Experts,
Are we able to use custom inputs ( <%=customOptions.fieldName%>) in SNOW CMDB custom mapping?
The idea is that the user orders the service catalog with this custom input, and CMP uses this input to create CI records in SNOW by using custom mapping as below.
{
“object_id”:“<%=instance.name%>”,
“SN_field_id2”:“<%=customOptions.fieldName%>”,
“SN_field_id3”:“<%=morph.varname3%>”
}
Thank you,
Aung
Solved! Go to Solution.
- Tags:
- Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2023 04:23 AM
08-16-2023 04:23 AM
Re: ServiceNow CMDB Mapping with custom inputs
Thanks a lot @cbunge for your quick respond.
Regards,
Aung
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2023 04:19 AM
08-16-2023 04:19 AM
SolutionI believe you should be able to. Other variables like instance.xxx are typically not available until after the machine begins creation, which is also when customOptions are available. I see in one of our environments we have customOptions configured with SNOW like:
{
“host_name”: “<%=instance.hostname%>”,
“guest_os_fullname”: “<%=instance.container.server.platform%>”,
“u_ambiente”: “<%=customOptions.ambiente%>”,
“u_guest_os_version”: “<%=instance.container.server.platformVersion%>”,
“u_cmp_resource_group”: “<%=group.name%>”,
“u_server_role”: “<%=customOptions.serverRole%>”,
“u_morpheus_instance_id”: “<%=instance.id%>”
}