Outage approval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 04:01 AM
Hi All,
In sysapproval_approvar were source table is cmdb_ci_outage here i need to display type is outage which are available in cmdb_ci_outage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 08:36 AM
HI @manumanoj
May i know how you build the relation of approval and Cmdb_ci_outage table.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 12:03 AM - edited 03-27-2024 09:50 PM
To display the type of outages available in the cmdb_ci_outage table within the sysapproval_approvar source table, you can implement a query or script that filters and retrieves the desired information. Here's a potential approach:
SELECT type
FROM sysapproval_approvar
WHERE source_table = 'cmdb_ci_outage'
AND type = 'outage';
Ensure that you adjust the query according to your database schema and naming conventions if necessary.
As someone venturing into game development, I'm eager to explore both the player's perspective and the coding side. I've been diving into online gaming and now I'm curious about front-end development. Recently, I've been browsing through reviews on https://notgamstop.com/ to learn more about casinos not on Gamstop, especially since they offer a broader range of games and betting options, along with simpler verification processes. It's crucial to note that these sites aren't under the same regulatory scrutiny as UK casinos, so I'm being careful in my selections.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 03:17 AM
Hi
In the now mobile application need to configure it announcements approval in the sysapproval_approver we can't specify type were source table is cmdb_ci_outage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 05:37 AM
Hi @manumanoj
Is this working in native view?
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************