Apply for the Master’s programme until 31 August

Foundations in Future Skills:
Digital Tools for Agile Workplaces

Degree:

Certificate

Study type:

Part-time

Start:

November 23, 2026

ECTS:

3 points

Language:

German

Costs:

2.000 € p. p.

Why this certificate?

This course will give you the skills that are essential for the future: Communication, resilience, problem-solving skills and self-management. You will learn how to plan and reflect on your professional activities in a structured way, while mastering the use of digital tools to make your work even more efficient.

 

Klingt interessant? Erfahre mehr.

Lass dir alle wichtigen Infos zu diesem Programm kostenlos per E-Mail zusenden.

  • A blended learning format that gives you the freedom to learn at your own pace – wherever you are most productive.
  • Practical tools and strategies for your self-management and resilience – everything you need to not only keep up in a constantly changing world of work, but also to continue to grow.
  • An interactive course that helps you to optimize your work processes and discover potential that you may not yet have recognized.
  • How to analyze and optimize the way you work in order to increase your efficiency in the long term.
  • Self-management strategies to manage your work processes effectively, systematically and independently.
  • How to use digital tools correctly to make your work even smarter.
  • Young professionals who want to lay the foundations for a successful career in the digital working world.
  • Experienced professionals who want to further professionalize and optimize their working methods.
  • Middle and senior managers who want to prepare their teams for the challenges of tomorrow.
  • Practically relevant skills development: you don’t just learn theory, but apply your knowledge directly to real challenges in your working environment.
  • Individualized learning paths: You can adapt the course to your specific needs and goals to support your personal and professional development.
  • Holistic approach: You not only develop self-management skills, but also expand your technological skills to really shine in an agile working environment.
  • Understanding of current megatrends: You analyze the impact of global developments on organizations and working environments – with a view to the requirements of a VUCA world.
  • Self-management and continuous development: You use cognitive and metacognitive strategies to organize and continuously develop yourself – from goal setting to time management.
  • Resilience and empathetic communication: You deal confidently with stress and change and communicate appropriately – even in challenging situations.

 

2887

Notice: Due to public holidays, there might be deviations from the sample schedule.

Kosten-Check

Was kostet dich das Zertifikat wirklich?

Prüfe direkt, wie sich dein Eigenanteil verändern kann – zum Beispiel durch Arbeitgeberzuschuss und steuerlichen Effekt.

Dein möglicher Eigenanteil

Wähle ein Szenario aus und sieh, wie sich der Preis für dich verändern kann.

Kurspreis
AG-Zuschuss
Vor Steuer
Steuer-Effekt

Unverbindliche Orientierung, keine Steuerberatung. Ob und in welcher Höhe Weiterbildungskosten berücksichtigt werden können, hängt vom Einzelfall ab.

Wird nur lokal in deinem Browser berechnet.

Good to know: You can apply for educational leave for your participation in a certificate course at the Scheer School.
Up to 3 days for a 4-week certificate and up to 5 days for an 8-week certificate. You can find out more here.

Find out which program suits you best – in a personal, non-binding information session with the Scheer School. Flexible, practical, future-oriented.

Scroll to Top

The key to the news.

Mit unserem Newsletter bleibst du immer auf dem Laufenden. Melde dich jetzt an und erhalte exklusive Inhalte, Webinar-Einladungen und Event-Infos direkt per E-Mail.

(function () { var translations = { de: { headline: "The key to the news.", subline: "Mit unserem Newsletter bleibst du immer auf dem Laufenden. Melde dich jetzt an und erhalte exklusive Inhalte, Webinar-Einladungen und Event-Infos direkt per E-Mail.", success: "Danke dir! Deine Anmeldung war erfolgreich. Du erhältst ab sofort unseren Newsletter mit aktuellen Inhalten, Einblicken und Hinweisen per E-Mail.", fname: "Vorname *", lname: "Nachname *", email: "E-Mail-Adresse *", phone: "Telefon", company: "Unternehmen", consent: 'Ich möchte den Newsletter per E-Mail erhalten und stimme der Verarbeitung meiner Daten gemäß Datenschutzerklärung zu. *', button: "Newsletter abonnieren", language: "de" }, en: { headline: "The key to the news.", subline: "Stay up to date with our newsletter. Sign up now and receive exclusive content, webinar invitations and event updates directly by email.", success: "Thank you! Your subscription was successful. From now on, you will receive our newsletter with current updates, insights and useful information by email.", fname: "First name *", lname: "Last name *", email: "Email address *", phone: "Phone", company: "Company", consent: 'I would like to receive the newsletter by email and agree to the processing of my data in accordance with the privacy policy. *', button: "Subscribe to newsletter", language: "en" } }; function detectLanguage() { var htmlLang = (document.documentElement.lang || "").toLowerCase(); var path = (window.location.pathname || "").toLowerCase(); if (htmlLang.indexOf("en") === 0) { return "en"; } if (/(^|\/)en(\/|$)/.test(path)) { return "en"; } return "de"; } function setText(id, value) { var el = document.getElementById(id); if (el) { el.textContent = value; } } function setHTML(id, value) { var el = document.getElementById(id); if (el) { el.innerHTML = value; } } function applyLanguage(lang) { var t = translations[lang] || translations.de; setText("newsletter-headline", t.headline); setText("newsletter-subline", t.subline); setText("newsletter-success-message", t.success); setText("newsletter-label-fname", t.fname); setText("newsletter-label-lname", t.lname); setText("newsletter-label-email", t.email); setText("newsletter-label-phone", t.phone); setText("newsletter-label-company", t.company); setHTML("newsletter-consent-copy", t.consent); setText("newsletter-button-text", t.button); var langField = document.getElementById("newsletter-language"); if (langField) { langField.value = t.language; } } function hasSuccessFlag() { var searchParams = new URLSearchParams(window.location.search); if (searchParams.get("success") === "true") { return true; } var hash = window.location.hash || ""; if (hash.indexOf("?") !== -1) { var hashQuery = hash.split("?")[1]; var hashParams = new URLSearchParams(hashQuery); if (hashParams.get("success") === "true") { return true; } } return false; } function getParamCaseInsensitive(params, key) { var lowerKey = key.toLowerCase(); var foundValue = ""; params.forEach(function (value, paramKey) { if (paramKey.toLowerCase() === lowerKey && !foundValue) { foundValue = value; } }); return foundValue; } function setFieldValue(id, value) { var field = document.getElementById(id); if (field) { field.value = value || ""; } } function populateUTMFields() { var params = new URLSearchParams(window.location.search); var utmMap = [ { param: "utm_content", field: "newsletter_utm_content" }, { param: "utm_medium", field: "newsletter_utm_medium" }, { param: "utm_source", field: "newsletter_utm_source" }, { param: "utm_campaign", field: "newsletter_utm_campaign" }, { param: "utm_id", field: "newsletter_utm_id" } ]; utmMap.forEach(function (item) { var storageKey = "ss_" + item.param; var urlValue = getParamCaseInsensitive(params, item.param); var storedValue = ""; try { storedValue = sessionStorage.getItem(storageKey) || ""; } catch (e) { storedValue = ""; } var finalValue = urlValue || storedValue || ""; if (urlValue) { try { sessionStorage.setItem(storageKey, urlValue); } catch (e) {} } setFieldValue(item.field, finalValue); }); } var currentLanguage = detectLanguage(); applyLanguage(currentLanguage); populateUTMFields(); if (hasSuccessFlag()) { var successBox = document.getElementById("newsletter-success-message"); var formBox = document.getElementById("newsletter-form"); if (successBox) { successBox.style.display = "block"; } if (formBox) { formBox.scrollIntoView({ behavior: "smooth", block: "start" }); } } })();

the key to the news

Mit unserem Newsletter bleibst du immer auf dem Laufenden. Melde dich jetzt an und erhalte exklusive Lerninhalte, Webinare und Event-Infos vor allen anderen.