Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Blog
  • Questions
  • Learning
    • E-learning Courses
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Tutorials
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • Integration Studio
      • System Architecture
      • DataMiner Releases & Updates
      • DataMiner Apps
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Automatic creation (CRUD) of Calendar .ics invites from DataMiner job schedules

Solved706 views18th January 2024google calendar Job Manager microsoft exchange outlook RFC5545 synchronization of calendar data
5
Steven Soenens [SLC] [DevOps Member]434 2nd January 2024 2 Comments

Hi,

I'm just reaching out to the community if anyone has done some work on generating calendar schedules for e.g. Outlook or Google calendar from DataMiner. I guess there are different ways to address this, ranging from generating/emailing ics files (RFC5545) to linking accounts. The use case is pretty simple:

  1. As a booking team member, while entering the DataMiner Job, I can select contacts with email addresses that will participate with the job execution. E.g. for a sports remote production event, I may need a technical director, a interviewer, an editor, etc. Those people may belong to various organizations such as ad-hoc contractor companies, but also to well-known organizations we work with very frequently (read : the latter group may have an account on the DataMiner cloud platform for purposes of Teams collaboration, dashboard sharing, etc)
  2. As a booking team member, I'd like DataMiner to automate the creation, updating and deleting events from calendars of all contacts involved. Of course, DataMiner is to add all job details in the meeting notes details as text or a URL to a shared dashboard specific to this job.

Appreciate any insights, past experiences and even enthusiasm creating an MVP! I'm sure a lot of DataMiner users would welcome this!

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 18th January 2024
Alberto De Luca [DevOps Enabler] commented 2nd January 2024

Hi Steve,
I think it’s a use case that can come up frequently – been there when working on event scheduling systems. Subscribing to retrieve more insight from the community.

In this scenario will the booking be handled entirely within DataMiner/SRM or could there a be separate system that will allocate resources & generate the booking? Asking to understand if the solution needs to account for cases when a booking team can amend the schedule after the first invite and if this can happen outside of DM.

Outside the logic of Sport events, having some sort of C# automation to generate invites could also help with anything defined within the Built-in Scheduler in DataMiner (APPS> Scheduler).

Ref “.ICS” format, this might be viable – some further considerations may be needed if different calendar apps need to be fully supported, e.g.
https://support.google.com/a/users/answer/156467

HTH

Steven Soenens [SLC] [DevOps Member] commented 3rd January 2024

Thanks Alberto. The goal is indeed for DataMiner to push scheduling info to external calendars (push only for now). All bookings remain on the DataMiner acting as the master resource manager. But visualizing bookings in 3 party tools in a convenient manner is very useful. With that, we can include more DataMiner info in the ICS file including e.g. textual info about the booking, but also e.g. a link to a dashboard related to the booking, a link to a Teams channel for collaboration, a link to a low-code app for remote workers, etc.
At this point (MVP), I’d not go for getting meeting updates coming from 3rd party calendars as this may lead to booking conflicts and all of that. I don’t think there is a market need for anything like that in fact (since we can include in the ICS file a link to a DataMiner low code app to edit the jobs and bookings – those in turn would update the ICS files again)
As with any standard, I do expect that different tools (Google, Outlook, …) may treat ICS files little different. However, my intent is to use only the basics fields of a calendar item (name, start, stop, description, …) – the absolute minimum. I’m also leaning to generate the ICS file using a script as I agree, such a script may be very useful for numerous use cases.
Thanks!

Looking for other feedback / ideas as well …

S.

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
2
Michiel Saelen [SLC] [DevOps Enabler]5.63K Posted 9th January 2024 0 Comments

You can create an automation script in which you read the tasks with the below method and then create ICS files from it.

Example code to retrieve the tasks:

var getTasksMsg = new GetInfoMessage(InfoType.SchedulerTasks);
var result = engine.SendSLNetSingleResponseMessage(getTasksMsg) as GetSchedulerTasksResponseMessage;
foreach (var entry in result.Tasks)
{
var task = entry as SchedulerTask;
engine.GenerateInformation($"Task '{task.TaskName}': {task.StartTime} => {task.EndTime} with RepeatType {task.RepeatType} ({task.RepeatInterval})");
}

NOTE: SLNet calls have to be used with caution. There is no guarantee that these methods will be supported in all future DM versions.

There are some libraries available that might help you to then create the ICS files from these tasks. For example NuGet Gallery | Ical.Net 4.2.0

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 18th January 2024
Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas

Recent questions

DOM Definition relations returned in Definition query 0 Answers | 0 Votes
Alarm Dashboard PDF/CSV Export 1 Answer | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes

Question Tags

adl2099 (115) alarm (62) Alarm Console (82) alarms (100) alarm template (83) Automation (223) automation scipt (111) Automation script (167) backup (71) Cassandra (180) Connector (108) Correlation (68) Cube (150) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (140) driver (65) DVE (55) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (152) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) services (51) SNMP (86) SRM (337) table (54) trending (87) upgrade (62) Visio (539) Visual Overview (345)
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin