A copied Discovery Pattern - Shared Library Displays the Name in Other PatternsSummary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } Description When a shared library in the discovery patterns is copied and the name is changed, other patterns that use the shared library display the new name, but the discovery pattern text still shows the original sys_id. Steps to Reproduce 1. Navigate to Discovery Patterns.2. Load the record of the shared library (e.g., 'SNMP Identify'). Note the sys_id3. Change the name to a new name . Insert and stay. Note the new sys_id.4. Navigate to Discovery Patterns.5. Load a different discovery pattern (e.g., 'Network Switch')6. Select the Pattern tab and search for the shared library (e.g., 'snmp identify'). Note the refid. This should match the original shared library record.7. Select the Basic tab, and select 'discovery'.8. Select the shared library (e.g., 5. SNMP Identify). Note that the * Library field has the new name, not the original name. Cause of the issue The issue is due to the "id" in the pattern text different from the one on the form sys_id, it causes the return in network tab of "getAllLibraries" to have the id that matched to new record. Fix Change the 'id' value in the copied shared library to reflect its sys_id. For example, if the original shared library 'SNMP Identify' has a sys_id of 'c54f14e1db692200868a7c841f961941' and the copied version '(N**H) SNMP Identify' has a sys_id of '3621055bc3b5ee50834a7ae0e001318f', change the 'id' value in '(NSWH) SNMP Identify' to '3621055bc3b5ee50834a7ae0e001318f'. This ensures that the 'id' in the pattern text matches the one on the form sys_id, resolving the issue.