{"id":50844,"date":"2024-07-24T11:55:52","date_gmt":"2024-07-24T09:55:52","guid":{"rendered":"https:\/\/community.simplifier.io\/doc\/typischer-anwendungsfall-pdf-plugin\/"},"modified":"2025-12-11T15:48:12","modified_gmt":"2025-12-11T13:48:12","slug":"typischer-anwendungsfall-pdf-plugin","status":"publish","type":"manual_documentation","link":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/","title":{"rendered":"Typisches Anwendungsfall-PDF-Plugin"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row row_content_display=&#8221;in_grid&#8221; row_content_display_align=&#8221;left&#8221; row_type=&#8221;row&#8221; stretch_row_type=&#8221;yes&#8221;][vc_column][\/vc_column][\/vc_row][vc_row row_content_display=&#8221;in_grid&#8221; row_content_display_align=&#8221;left&#8221; row_type=&#8221;row&#8221; stretch_row_type=&#8221;yes&#8221;][vc_column][vc_column_text css=&#8221;&#8221;]<\/p>\n<ol>\n<li><strong><span lang=\"en\">Erstellen Sie eine HTML-Vorlage f\u00fcr die PDF-Generierung, einschlie\u00dflich Variablen und Schleifen im Mustache-Format.<\/span><\/strong><\/li>\n<li><strong><span lang=\"en\">Lade die Vorlage mit einem ausgew\u00e4hlten Namen \u00fcber die REST-Schnittstelle hoch.<\/span><\/strong>\n<ol>\n<li>Wenn du deine Vorlage sp\u00e4ter korrigieren m\u00f6chtest, \u00e4ndere sie \u00fcber die REST-Schnittstelle.<\/li>\n<li>Laden Sie alle erforderlichen Bilder und Stylesheets als Uploads im AppServer hoch.<\/li>\n<\/ol>\n<\/li>\n<li><strong>In der App:<\/strong>\n<ol>\n<li>Generierung dynamischer Daten.<\/li>\n<li>Lade die generierten dynamischen Daten unter einer eindeutigen Sitzungs-ID im Key-Value-Store hoch (\u00fcber die REST-Schnittstelle des Key-Value-Stores).<br \/>\nDie Payload ben\u00f6tigt einen eindeutigen Schl\u00fcssel und die dynamischen Daten, die du speichern m\u00f6chtest.<\/p>\n<pre>var payloadKeyValueStore = {\r\n\r\n key: \"sessiondata\/myTestApp\/\" + sap.ui.getCore().getModel().getData().sessionKey,\r\n\r\n content: btoa(JSON.stringify(sap.ui.getCore().getModel().getData()))\r\n\r\n};\r\n\r\nthis.callPlugin(\"keyValueStorePlugin\", \"puthttp\", payloadKeyValueStore, callbackStoreSession, true, false, onKeyValueStoreFail)<\/pre>\n<\/li>\n<li>Optional: Hochladen zus\u00e4tzlicher Dokumente zur Zusammenf\u00fchrung in den Key-Value-Store (\u00fcber die REST-Schnittstelle des Key-Value-Stores).<\/li>\n<li>Optional: Hochladen einer Liste dieser Dokumentschl\u00fcssel als Zusammenf\u00fchrungsliste in den Key-Value-Store (\u00fcber die REST-Schnittstelle des Key-Value-Stores).<\/li>\n<li>Start der PDF-Generierung mit dem Vorlagennamen, der Sitzungs-ID und (optionalen) Konfigurationsdaten f\u00fcr die PDF-Generierung \u00fcber die REST-Schnittstelle.\n<pre>var callbackStoreSession = function(data) {\r\n\r\n  if(data.success) {\r\n\r\n  var payloadGeneratePdf = {\r\n\r\n  \"template\": \"templatename\",\r\n\r\n  \"session\": \"myTestApp\/\" + sap.ui.getCore().getModel().getData(). sessionKey,\r\n\r\n  \/\/\"config\": \"(\\\"orientation\\\" : \\\"Portrait\\\", \\\"page-size\\\" : \\\"A4\\\", \\\"margin-top\\\" : \\\"1in\\\", \\\"margin-bottom\\\" : \\\"1in\\\",\r\n\r\n  \/\/\\\"margin-left\\\" : \\\"1in\\\", \\\"margin-right\\\" : \\\"1in\\\", \\\"footer-center\\\" : \\\"[page] \/ [toPage]\\\"}\\\"}\\\"\r\n\r\n  };\r\n\r\n  busyDialog.setText(\"Generiert die angeforderte PDF-Datei. Bitte etwas Geduld.\");\r\n\r\n  $this.callPlugin(\"pdfPlugin\", \"generatePdf\", payloadGeneratePdf, callbackGeneratePdf, true, false, onGeneratePdfFail);\r\n\r\n  }\r\n\r\n};<\/pre>\n<\/li>\n<li>Merken Sie sich die JobID.<\/li>\n<\/ol>\n<\/li>\n<li><strong>Asynchrone Ausf\u00fchrung der PDF-Generierung (Hintergrundoperation).<\/strong>\n<ol>\n<li>Rufen Sie die Vorlage auf.<\/li>\n<li>Rufen Sie die dynamischen Daten ab.<\/li>\n<li>Werten Sie die Daten in der Vorlage aus.<\/li>\n<li>Rufen Sie die statischen Assets (Bilder, Stylesheets) vom AppServer ab.<\/li>\n<li>Konvertieren Sie die fertige HTML-Datei in ein PDF.<\/li>\n<li>Holen Sie sich die Zusammenf\u00fchrungsliste und die Zusammenf\u00fchrungs-Bin\u00e4rdateien.<\/li>\n<li>F\u00fchren Sie das erstellte PDF mit den Zusammenf\u00fchrungsdateien zusammen.<\/li>\n<li>Speichern Sie das fertige PDF im Key-Value-Store.<\/li>\n<\/ol>\n<\/li>\n<li><strong>Rufe den Key-Value-Store \u00fcber die REST-Schnittstelle mit der eingeschr\u00e4nkten JobID auf, um zu sehen, ob die PDF-Datei bereits fertiggestellt wurde.<\/strong>\n<pre>var jobId;\r\n\r\nvar callbackGeneratePdf = function(data) {\r\n\r\n  if (data.success) {\r\n\r\n  jobId = {\r\n\r\n  key: \"pdf\/\"+data.value.jobId+\".pdf\"\r\n\r\n  };\r\n\r\n  \/\/Timeout f\u00fcr Demozwecke\r\n\r\n  setTimeout(function() {\r\n\r\n  $this.callPlugin(\"keyValueStorePlugin\", \"gethttp\", jobId, callbackFetchPdf, true, false, onKeyValueStoreFail);\r\n\r\n  },10000);\r\n\r\n  }\r\n\r\n};\r\n\r\nvar callbackFetchPdf = function(data) {\r\n\r\n  if(data.success) {\r\n\r\n  var pdfData = data.result;\r\n\r\n  window.open(\"data:application\/pdf;base64,\"pdfData);\r\n\r\n  }\r\n\r\n};<\/pre>\n<\/li>\n<\/ol>\n<p>[\/vc_column_text][\/vc_column][vc_column][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.   <\/p>\n","protected":false},"author":1,"featured_media":0,"parent":51277,"menu_order":143,"template":"","format":"standard","class_list":["post-50844","manual_documentation","type-manual_documentation","status-publish","format-standard","hentry","manualdocumentationcategory-aktueller-release"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club<\/title>\n<meta name=\"description\" content=\"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club\" \/>\n<meta property=\"og:description\" content=\"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/\" \/>\n<meta property=\"og:site_name\" content=\"Simplifier Makers Club\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/simplifier.io\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-11T13:48:12+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@simplifier_io\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"2\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/\"},\"author\":{\"name\":\"Chris Bouveret\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/person\\\/4e80618add686271435728dd07f9e595\"},\"headline\":\"Typisches Anwendungsfall-PDF-Plugin\",\"datePublished\":\"2024-07-24T09:55:52+00:00\",\"dateModified\":\"2025-12-11T13:48:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/\"},\"wordCount\":306,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\"},\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/\",\"name\":\"Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#website\"},\"datePublished\":\"2024-07-24T09:55:52+00:00\",\"dateModified\":\"2025-12-11T13:48:12+00:00\",\"description\":\"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/current-release\\\/extend\\\/plugins\\\/list-of-plugins\\\/pdf-plugin\\\/typical-use-case-pdf-plugin\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"App Builder Anleitung\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/app-builder-leitfaden\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Erweitern\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/ausdehnen\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Plugins\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/ausdehnen\\\/steckdosen\\\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Liste der Plugins\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/liste-der-plugins\\\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"PDF-Plugin\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/ausdehnen\\\/steckdosen\\\/liste-der-plugins\\\/pdf-plugin\\\/\"},{\"@type\":\"ListItem\",\"position\":7,\"name\":\"Typisches Anwendungsfall-PDF-Plugin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\",\"name\":\"Simplifier Makers Club\",\"description\":\"Where Ideas become Digital Reality - Simplifier Documentation, Knowledgebase, Forum, Courses and Marketplace\",\"publisher\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\",\"name\":\"Simplifier AG\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/simplifier-logo.png\",\"contentUrl\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/simplifier-logo.png\",\"width\":651,\"height\":150,\"caption\":\"Simplifier AG\"},\"image\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/simplifier.io\\\/\",\"https:\\\/\\\/x.com\\\/simplifier_io\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/simplifier-ag\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Simplifier\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/person\\\/4e80618add686271435728dd07f9e595\",\"name\":\"Chris Bouveret\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/1\\\/1713192263-bpfull.png\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/1\\\/1713192263-bpfull.png\",\"contentUrl\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/1\\\/1713192263-bpfull.png\",\"caption\":\"Chris Bouveret\"},\"description\":\"Hi, I\u2019m Chris, Co-Founder and CIO of Simplifier. I\u2019m passionate about revolutionizing how businesses build and deploy applications using low-code technology. I focus on ensuring our platform is secure, robust, and constantly evolving to meet your needs. At Simplifier, we're committed to empowering you with the tools and support necessary to streamline your processes and drive innovation within your organization.\",\"sameAs\":[\"https:\\\/\\\/www.simplifier.io\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/christopher-bouveret\",\"https:\\\/\\\/x.com\\\/chrisbouveret\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club","description":"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/","og_locale":"de_DE","og_type":"article","og_title":"Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club","og_description":"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.","og_url":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/","og_site_name":"Simplifier Makers Club","article_publisher":"https:\/\/www.facebook.com\/simplifier.io\/","article_modified_time":"2025-12-11T13:48:12+00:00","twitter_card":"summary_large_image","twitter_site":"@simplifier_io","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/#article","isPartOf":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/"},"author":{"name":"Chris Bouveret","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/person\/4e80618add686271435728dd07f9e595"},"headline":"Typisches Anwendungsfall-PDF-Plugin","datePublished":"2024-07-24T09:55:52+00:00","dateModified":"2025-12-11T13:48:12+00:00","mainEntityOfPage":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/"},"wordCount":306,"commentCount":0,"publisher":{"@id":"https:\/\/community.simplifier.io\/de\/#organization"},"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/","url":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/","name":"Typisches Anwendungsfall-PDF-Plugin - Simplifier Makers Club","isPartOf":{"@id":"https:\/\/community.simplifier.io\/de\/#website"},"datePublished":"2024-07-24T09:55:52+00:00","dateModified":"2025-12-11T13:48:12+00:00","description":"Erstelle eine HTML-Vorlage f\u00fcr die PDF-Generierung &amp; lade sie \u00fcber die REST-Schnittstelle hoch. Bei Bedarf sp\u00e4ter korrigieren. Lade auch Bilder und Stylesheets hoch. Generiere dynamische Daten &amp; lade sie mit einer eindeutigen ID zur sp\u00e4teren Bezugnahme hoch.","breadcrumb":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/community.simplifier.io\/de\/doc\/current-release\/extend\/plugins\/list-of-plugins\/pdf-plugin\/typical-use-case-pdf-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/community.simplifier.io\/de\/"},{"@type":"ListItem","position":2,"name":"App Builder Anleitung","item":"https:\/\/community.simplifier.io\/de\/doc\/app-builder-leitfaden\/"},{"@type":"ListItem","position":3,"name":"Erweitern","item":"https:\/\/community.simplifier.io\/de\/doc\/ausdehnen\/"},{"@type":"ListItem","position":4,"name":"Plugins","item":"https:\/\/community.simplifier.io\/de\/doc\/ausdehnen\/steckdosen\/"},{"@type":"ListItem","position":5,"name":"Liste der Plugins","item":"https:\/\/community.simplifier.io\/de\/doc\/liste-der-plugins\/"},{"@type":"ListItem","position":6,"name":"PDF-Plugin","item":"https:\/\/community.simplifier.io\/de\/doc\/ausdehnen\/steckdosen\/liste-der-plugins\/pdf-plugin\/"},{"@type":"ListItem","position":7,"name":"Typisches Anwendungsfall-PDF-Plugin"}]},{"@type":"WebSite","@id":"https:\/\/community.simplifier.io\/de\/#website","url":"https:\/\/community.simplifier.io\/de\/","name":"Simplifier Makers Club","description":"Where Ideas become Digital Reality - Simplifier Documentation, Knowledgebase, Forum, Courses and Marketplace","publisher":{"@id":"https:\/\/community.simplifier.io\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/community.simplifier.io\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/community.simplifier.io\/de\/#organization","name":"Simplifier AG","url":"https:\/\/community.simplifier.io\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/logo\/image\/","url":"https:\/\/community.simplifier.io\/wp-content\/uploads\/2024\/09\/simplifier-logo.png","contentUrl":"https:\/\/community.simplifier.io\/wp-content\/uploads\/2024\/09\/simplifier-logo.png","width":651,"height":150,"caption":"Simplifier AG"},"image":{"@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/simplifier.io\/","https:\/\/x.com\/simplifier_io","https:\/\/www.linkedin.com\/company\/simplifier-ag\/","https:\/\/www.youtube.com\/c\/Simplifier\/"]},{"@type":"Person","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/person\/4e80618add686271435728dd07f9e595","name":"Chris Bouveret","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/1\/1713192263-bpfull.png","url":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/1\/1713192263-bpfull.png","contentUrl":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/1\/1713192263-bpfull.png","caption":"Chris Bouveret"},"description":"Hi, I\u2019m Chris, Co-Founder and CIO of Simplifier. I\u2019m passionate about revolutionizing how businesses build and deploy applications using low-code technology. I focus on ensuring our platform is secure, robust, and constantly evolving to meet your needs. At Simplifier, we're committed to empowering you with the tools and support necessary to streamline your processes and drive innovation within your organization.","sameAs":["https:\/\/www.simplifier.io","https:\/\/www.linkedin.com\/in\/christopher-bouveret","https:\/\/x.com\/chrisbouveret"]}]}},"_links":{"self":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50844","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/types\/manual_documentation"}],"author":[{"embeddable":true,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":5,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50844\/revisions"}],"predecessor-version":[{"id":74690,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50844\/revisions\/74690"}],"up":[{"embeddable":true,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/51277"}],"wp:attachment":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/media?parent=50844"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}