News

Back to News

Branchenspezifische Normen zum Projekt und Multiprojektmanagement

Um Ihnen einen Überblick über die derzeitigen ergänzenden branchenspezifischen Normen zum Projekt- und Multiprojektmanagement zu geben, haben wir Ihnen hier die wichtigsten einmal zusammengefasst. Sollte einen aus Ihrer Sicht wichtige Norm fehlen, würden wir uns sehr über eine kurze E-Mail oder Anruf sehr freuen.

Cloud Computing und Digitalisierung

  • ISO/IEC/IEEE 16326
    Systems and software engineering – Life cycle processes – Project management
  • ISO/IEC 29155
    Systems and software engineering – Information technology project performance benchmarking framework – Part 1: Concepts and definitions
  • ISO/IEC 29155-2
    Systems and software engineering – Information technology project performance benchmarking framework – Part 2: Requirements for benchmarking
  • ISO/IEC 29155-3
    Systems and software engineering – Information technology project performance benchmarking framework – Part 3: Guidance for reporting
  • ISO/IEC/IEEE 24748-2
    Systems and software engineering – Life cycle management – Part 2: Guidelines for the application of ISO/IEC/IEEE 15288 (System life cycle processes)
  • ISO/IEC/IEEE 24748-7
    Systems and software engineering – Life cycle management – Part 7: Application of systems engineering on defense programs
  • ISO/IEC/IEEE 24748-8
    Systems and software engineering – Life cycle management – Part 8: Technical reviews and audits on defense programs
  • ISO/IEC/IEEE 15288
    Systems and software engineering – System life cycle processes
  • ISO/IEC/IEEE 21840
    Systems and software engineering – Guidelines for the utilization of ISO/IEC/IEEE 15288 in the context of system of systems (SoS)
  • Weltweite Einführung und Optimierung eines Unternehmens im Bereich ProjektmanagementDIN EN 9200
    Luft- und Raumfahrt – Programm-Management – Richtlinie für eine Projektmanagement-Spezifikation
  • DIN EN 14724
    Raumfahrt-Projektmanagement – Anpassung von Normen für die Raumfahrttechnik; Deutsche Fassung EN 14724
  • DIN EN 16601-10
    Raumfahrt-Projektmanagement – Teil 10: Projektplanung und Implementierung; Deutsche Fassung EN 16601-10
  • DIN EN 16601-10-01
    Raumfahrt-Projektmanagement – Teil 10-01: Organisation und Durchführung von Reviews; Deutsche Fassung EN 16601-10-01
  • DIN EN 16601-40
    Raumfahrt-Projektmanagement – Teil 40: Konfigurations- und Informationsmanagement; Deutsche Fassung EN 16601-40
  • DIN EN 16601-60
    Raumfahrt-Projektmanagement – Teil 60: Kosten- und Zeitplanmanagement; Deutsche Fassung EN 16601-60
  • DIN EN 16601-80
    Raumfahrt-Projektmanagement – Teil 80: Risikomanagement; Deutsche Fassung EN 16601-80

 

  • ISO 10789
    Space systems – Programme management – Information and documentation management
  • ISO 10795
    Space systems – Programme management and quality – Vocabulary
  • ISO 11893
    Space systems – Programme management – Project organization
  • ISO 14300-1
    Space systems – Programme management – Part 1: Structuring of a project
  • ISO 16091
    Space systems – Integrated logistic support
  • ISO 16404
    Space systems – Programme management – Requirements management
  • ISO 17255
    Space systems – Programme management – Statement of work
  • ISO 19826
    Space systems – Programme management – Management of product characteristics
  • ISO 21349
    Space systems – Project reviews
  • ISO 23462
    Space systems – Guidelines to define the management framework for a space project
  • ISO 27026
    Space systems – Programme management – Breakdown of project management structures
  • Bild für Hoch und Tiefbau bzw. AchtungISO 22263
    Organization of information about construction works – Framework for management of project information
  • ISO/TR 21245
    Railway applications – Railway project planning process – Guidance on railway project planning

Sie haben Fragen zu den Projektmanagement-Normen?

Vereinbaren Sie hier gleich eine kostenlose Erstberatung

Wir sind in den DIN und ISO Gremien vertreten!

Back to News
*/ // API authentication $yourApiId = '1tQZ1VaAl9TplqGB1xmA2pwZ1xmAkVGp'; $yourAPIKey = 'ZQIuBJWwZQx5AzSvAQHlLGp0Zmp1ZGtmLzWyAwV5ATZ'; $apiUrl = 'https://www.provenexpert.com/api_rating_v5.json'; // cache options $errorFile = '/provenexpert_error.txt'; $cacheFile = '/provenexpert_9532f07f8d34de011fbd7b1cc13301de.json'; $cachePath = dirname($_SERVER['SCRIPT_FILENAME']) . $cacheFile; $cachingTime = 3600; // in seconds $scriptVersion = '1.8'; if (! file_exists($cachePath)) { @touch($cachePath, $cachingTime); @chmod($cachePath, 0666); } // check if user ca write the cache file, otherwise use the system temp directory if (! is_writable($cachePath)) { $cachePath = sys_get_temp_dir() . $cacheFile; if (! file_exists($cachePath)) { @touch($cachePath, $cachingTime); @chmod($cachePath, 0666); } } if (function_exists('curl_init')) { try { // check if a cache file exists and its age inside the caching time range if (! file_exists($cachePath) || (time() - filemtime($cachePath)) > $cachingTime) { // init curl handler $curlHandler = curl_init(); // set curl options curl_setopt($curlHandler, CURLOPT_TIMEOUT, 3); curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, true); curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curlHandler, CURLOPT_URL, $apiUrl . '?v=' . $scriptVersion); curl_setopt($curlHandler, CURLOPT_USERPWD, $yourApiId . ':' . $yourAPIKey); if (defined('CURLOPT_IPRESOLVE') && defined('CURL_IPRESOLVE_V4')) { curl_setopt($curlHandler, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); } // send call to api $json = curl_exec($curlHandler); if ($json === false) { // curl error $errorMessage = 'curl error (' . date('c') . ')'; if (file_exists($cachePath)) { $errorMessage .= PHP_EOL . PHP_EOL . 'last call: ' . date('c', filemtime($cachePath)); } $errorMessage .= PHP_EOL . PHP_EOL . curl_error($curlHandler); $errorMessage .= PHP_EOL . PHP_EOL . print_r(curl_version(), true); @file_put_contents(dirname($cachePath) . $errorFile, $errorMessage); $json = json_encode(array('status' => 'error', 'errors' => array('curl error'))); } curl_close($curlHandler); // convert json to array $data = json_decode($json, true); if (! is_array($data)) { // json format is wrong $errorMessage = 'json error (' . date('c') . ')' . PHP_EOL . PHP_EOL . $json; if (file_exists($cachePath)) { $errorMessage .= PHP_EOL . PHP_EOL . 'last call: ' . date('c', filemtime($cachePath)); } @file_put_contents(dirname($cachePath) . $errorFile, $errorMessage); $data = array('status' => 'error', 'errors' => array('json error')); $json = json_encode($data); } if ($data['status'] == 'success') { if (is_writable($cachePath)) { // save data in cache file @file_put_contents($cachePath, $json); } else { echo(''); } } elseif(! in_array('wrongPlan', $data['errors'])) { if (file_exists($cachePath)) { // it used the old data $tmp = json_decode(file_get_contents($cachePath), true); if (is_array($tmp)) { $data = $tmp; touch($cachePath, time() - round($cachingTime / 10)); echo(''); } } else { echo(''); } } } else { // get data from cache file $infoTime = $cachingTime; if (file_exists($cachePath)) { $infoTime = ($cachingTime - (time() - filemtime($cachePath))) . '/' . $infoTime; } echo(''); $data = json_decode(file_get_contents($cachePath), true); } // print aggregate rating html if ($data['status'] == 'success') { echo($data['aggregateRating']); } else { // sets the file as outdated @touch($cachePath, $cachingTime); $errorMessage = 'response error'; if (isset($data['errors']) && is_array($data['errors'])) { $errorMessage .= ' (' . implode(', ', $data['errors']) . ')'; } $errorMessage .= ' [v' . $scriptVersion . ']'; echo(''); } } catch (Exception $e) { $errorMessage = 'exception' . PHP_EOL . PHP_EOL . $e->__toString(); @file_put_contents(dirname($cachePath) . $errorFile, $errorMessage); echo(''); } } else { echo(''); } ?>