Enterprise Glossary User Manual
v2026.3 v2026.2 v2026.1 v2025.2 v2025.1 v2024.1 v2023.2 v2023.1
Auto Light Dark
Auto Light Dark
v2026.3 v2026.2 v2026.1 v2025.2 v2025.1 v2024.1 v2023.2 v2023.1 English
Breadcrumbs

Jump to Enterprise Glossary

With the Enterprise Glossary we implemented the direct generic links to the SAP entities. This functionality gives us the possibility to integrate functionality in other tools like SAC.

Here we describe how to integrate a button in SAC entities which can directly jump to that entities in Enterprise Glossary.

  1. Add a button to your SAC entity

  2. You can use the Enterprise Glossary icon for that button if you like Enterprise Glossary Bildmarke 2018 V2 4C.png

    image-20241217-090838.png
  3. Edit the Script for onClick as follows

    JavaScript
    var storyId = Application.getInfo().id;
    var url = "<YOUR Enterprise Glossary URL>" 
    + "sapEntities/sap-sac?connection=SAP Analytics Cloud&sacId=" 
    + storyId;
    NavigationUtils.openUrl(url, true);
    
  4. Save the button and use it