{"id":11250,"date":"2018-01-04T10:00:00","date_gmt":"2018-01-04T10:00:00","guid":{"rendered":"https:\/\/zapliance.com\/?p=11250"},"modified":"2022-08-26T13:53:52","modified_gmt":"2022-08-26T13:53:52","slug":"santa-was-not-the-only-one-handling-orders-for-presents","status":"publish","type":"post","link":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/","title":{"rendered":"Did you catch \u201cDecember fever\u201d too?"},"content":{"rendered":"\n<p>For many, if not all of you, December 31st was the balance sheet date for the past fiscal year. Many departments \/ heads of department seize the opportunity to fully use up any budget that they may have managed to save at the end of the year. This phenomenon to completely use up funds which have been allocated but not yet spent at the end of the year is sometimes also known as \u201cDecember fever\u201d. Of course, we do not want to imply any bad intentions, but some of us may even have taken the opportunity in order to be able to demand at least the same, if not even more budget next year. Reason enough for us to take a look at the volume and the amount of orders compared to the rest of the year.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where do we find the order data in SAP?<\/h2>\n\n\n\n<p>Almost all information on a purchase order can be found in the tables for \u201cPurchasing Document Headers (EKKO)\u201d and \u201cPurchasing Document Items (EKPO)\u201d. For the purposes of this analysis, we don\u2019t need many fields, but unfortunately these are spread over the two tables:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Client (MANDT field)<\/li><li>Company code (BUKRS field)<\/li><li>Purchasing Document Number (EBELN field)<\/li><li>Purchasing Document Type (BSART field)<\/li><li>Net Purchase Order Value in Order Currency (NETWR field)<\/li><li>Purchasing Document Item Change Date (AEDAT field)<\/li><\/ul>\n\n\n\n<p>There are basically three ways to obtain the corresponding data from the tables mentioned. You can either use a table join in SAP using the transaction \u201cSQVI\u201d, or use the SQL Editor using the transaction \u201cDBACOCKPIT\u201d \u2013 Diagnostics \u2013 SQL Editor. Alternatively, you can use SQL to access a database that has already been extracted by zap Audit. Procedures two and three are essentially pretty similar, so we\u2019ll start with the SQL procedure here.<\/p>\n\n\n\n<p>As soon as we have SQL access, we can use a simple SQL query to get the necessary data:<\/p>\n\n\n\n<p>SELECT K.EBELN, SUM(P.NETWR), K.BSART, K.MANDT, K.BUKRS, K.AEDAT FROM EKKO AS K, EKPO AS P WHERE K.EBELN = P.EBELN AND K.AEDAT &gt;= \u20182016-01-01\u2019 AND K.AEDAT &lt;= \u20182016-12-31\u2019 GROUP BY K.EBELN, K.MANDT, K.AEDAT, K.BUKRS, K.BSART<\/p>\n\n\n\n<p>Or, using the SQL Editor in SAP (tested with Hana):<\/p>\n\n\n\n<p>SELECT K.EBELN, SUM(P.NETWR), K.BSART, K.MANDT, K.BUKRS, K.AEDAT FROM EKKO AS K, EKPO AS P WHERE K.EBELN = P.EBELN AND K.AEDAT &gt;= \u201820160101\u2019 AND K.AEDAT &lt;= \u201820161231\u2019 GROUP BY K.EBELN, K.MANDT, K.AEDAT, K.BUKRS, K.BSART<\/p>\n\n\n\n<p>Note the difference in the display of the date formats. Your SAP system may save the date in a different format, so you must adjust the query accordingly. If you need help with this, don\u2019t hesitate to contact us&nbsp;<a href=\"https:\/\/zapliance.com\/contact?lang=en\">here<\/a>.<\/p>\n\n\n\n<p>Now, we export the results as usual by clicking on:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/zapliance.com\/wp-content\/uploads\/SAP-Export-to-Excel.jpg\" alt=\"\" class=\"wp-image-6930\" title=\"SAP Export to Excel\"\/><\/figure>\n\n\n\n<p>Of course, you can always still filter the results in Excel for a specific company code. To keep things simple though, we did not do this at this stage.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preparation of the data<\/h2>\n\n\n\n<p>SAP does not make things easy for us when it comes to the date format, so we have to format the date in Excel before we can make any meaningful use of it.<\/p>\n\n\n\n<p>After opening the export, the creation date (AEDAT) is displayed as follows:<\/p>\n\n\n\n<p>20140219<\/p>\n\n\n\n<p>It starts with the year, followed by the month and ends with the day. Unfortunately, we cannot simply format the date so that Excel recognizes that it is a date. That is why we must first separate the figures and then generate a reasonable date:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>AEDAT<\/th><th>Year<\/th><th>Month<\/th><th>Day<\/th><th>Date<\/th><\/tr><tr><td>20141111<\/td><td>=LEFT(F2; 4)<\/td><td>=LEFT(RIGHT(F2;4); 2)<\/td><td>=RIGHT(F2;2)<\/td><td>=DATE(G2;H2;I2)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The table shows the distribution and creation of the date with simple Excel formulas. If you know a faster or better method of doing this, please let me know in the comments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Viewing purchase order data from SAP<\/h2>\n\n\n\n<p>After we have prepared the data, we can now begin to actually evaluate and visualize the data obtained. To do this, we first create a pivot table using \u201cInsert \u2013 PivotTable\u201d. Excel should automatically select the complete table so that we can edit the PivotTable by clicking on \u201cOk\u201d. On the right, we select the following setting for the PivotTable fields:<\/p>\n\n\n\n<p>Rows: date<\/p>\n\n\n\n<p>Values: EBELN (document number) and SUMNETWR (sum of the net order value in purchase order currency)<\/p>\n\n\n\n<p>This already gives us a good overview of how many times orders were placed in which months and the value of the orders placed. However, as soon as there are more than 7 numbers in the SUMNETWR column, the table quickly becomes confusing, so we have to take a closer look to establish whether there were 3 or 5 million-worth of orders in February.<\/p>\n\n\n\n<p>For this reason we let Excel draw us another chart. This is not only clearer and easier to understand but it\u2019s also easier to present to management too! \ud83d\ude42<\/p>\n\n\n\n<p>Via \u201cInsert \u2013 Charts \u2013 Recommended Charts \u2013 All Charts \u2013 Combo\u201d, we select the second chart with the name \u201cClustered Column \/ Line on Secondary Axis\u201d. We use the columns to display the net value and the number of documents is displayed as a line. The result will then look something like this:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/zapliance.com\/wp-content\/uploads\/december-fever-purchasing-orders.jpg\" alt=\"\" class=\"wp-image-6932\" title=\"december fever purchasing orders\"\/><\/figure>\n\n\n\n<p>After an average beginning to the year and a rather sluggish summer, the great order euphoria follows, with a small downturn in October. At this point, it\u2019s over to you once again: if you see that such a trend has occurred, then why not analyze what was ordered and especially why it was ordered at the end of the year? There may of course also be some very good reasons for this. Either that or your company produces very seasonal products, if so then it might not necessarily be anything unusual.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For many, if not all of you, December 31st was the balance sheet date for the past fiscal year. Many departments \/ heads of department seize the opportunity to fully use up any budget that they may have managed to save at the end of the year. This phenomenon to completely use up funds which [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":10699,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","inline_featured_image":false,"footnotes":""},"categories":[42],"tags":[],"class_list":["post-11250","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-en-trends"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Did you catch \u201cDecember fever\u201d too? - zapliance<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Did you catch \u201cDecember fever\u201d too? - zapliance\" \/>\n<meta property=\"og:description\" content=\"For many, if not all of you, December 31st was the balance sheet date for the past fiscal year. Many departments \/ heads of department seize the opportunity to fully use up any budget that they may have managed to save at the end of the year. This phenomenon to completely use up funds which [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-04T10:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:53:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"962\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alexander Ruehle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alexander Ruehle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\"},\"author\":{\"name\":\"Alexander Ruehle\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211\"},\"headline\":\"Did you catch \u201cDecember fever\u201d too?\",\"datePublished\":\"2018-01-04T10:00:00+00:00\",\"dateModified\":\"2022-08-26T13:53:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\"},\"wordCount\":964,\"publisher\":{\"@id\":\"https:\/\/zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"articleSection\":[\"Trends\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\",\"url\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\",\"name\":\"Did you catch \u201cDecember fever\u201d too? - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2018-01-04T10:00:00+00:00\",\"dateModified\":\"2022-08-26T13:53:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage\",\"url\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"contentUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"width\":2400,\"height\":962},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Did you catch \u201cDecember fever\u201d too?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zapliance.com\/en\/#website\",\"url\":\"https:\/\/zapliance.com\/en\/\",\"name\":\"zapliance\",\"description\":\"Be the agent of change\",\"publisher\":{\"@id\":\"https:\/\/zapliance.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zapliance.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/zapliance.com\/en\/#organization\",\"name\":\"zapliance\",\"url\":\"https:\/\/zapliance.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg\",\"contentUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg\",\"width\":200,\"height\":45,\"caption\":\"zapliance\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211\",\"name\":\"Alexander Ruehle\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_5_1657802999-96x96.jpg\",\"contentUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_5_1657802999-96x96.jpg\",\"caption\":\"Alexander Ruehle\"},\"description\":\"is CEO &amp; Co-Founder of zapliance and has been an auditor at heart for over 15 years. He is both a Certified Internal Auditor and Certified Information Systems Auditor and is moving forward as a thought leader to transform the finance, audit and compliance industry - people-centric, data-driven and context-driven.\",\"url\":\"https:\/\/zapliance.com\/en\/blog\/author\/alexander-ruehle\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Did you catch \u201cDecember fever\u201d too? - zapliance","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:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/","og_locale":"en_US","og_type":"article","og_title":"Did you catch \u201cDecember fever\u201d too? - zapliance","og_description":"For many, if not all of you, December 31st was the balance sheet date for the past fiscal year. Many departments \/ heads of department seize the opportunity to fully use up any budget that they may have managed to save at the end of the year. This phenomenon to completely use up funds which [&hellip;]","og_url":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/","og_site_name":"zapliance","article_published_time":"2018-01-04T10:00:00+00:00","article_modified_time":"2022-08-26T13:53:52+00:00","og_image":[{"width":2400,"height":962,"url":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","type":"image\/png"}],"author":"Alexander Ruehle","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alexander Ruehle","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#article","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/"},"author":{"name":"Alexander Ruehle","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211"},"headline":"Did you catch \u201cDecember fever\u201d too?","datePublished":"2018-01-04T10:00:00+00:00","dateModified":"2022-08-26T13:53:52+00:00","mainEntityOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/"},"wordCount":964,"publisher":{"@id":"https:\/\/zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","articleSection":["Trends"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/","url":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/","name":"Did you catch \u201cDecember fever\u201d too? - zapliance","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2018-01-04T10:00:00+00:00","dateModified":"2022-08-26T13:53:52+00:00","breadcrumb":{"@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#primaryimage","url":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","contentUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","width":2400,"height":962},{"@type":"BreadcrumbList","@id":"https:\/\/zapliance.com\/en\/blog\/santa-was-not-the-only-one-handling-orders-for-presents\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"Did you catch \u201cDecember fever\u201d too?"}]},{"@type":"WebSite","@id":"https:\/\/zapliance.com\/en\/#website","url":"https:\/\/zapliance.com\/en\/","name":"zapliance","description":"Be the agent of change","publisher":{"@id":"https:\/\/zapliance.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zapliance.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zapliance.com\/en\/#organization","name":"zapliance","url":"https:\/\/zapliance.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg","contentUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg","width":200,"height":45,"caption":"zapliance"},"image":{"@id":"https:\/\/zapliance.com\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211","name":"Alexander Ruehle","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_5_1657802999-96x96.jpg","contentUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_5_1657802999-96x96.jpg","caption":"Alexander Ruehle"},"description":"is CEO &amp; Co-Founder of zapliance and has been an auditor at heart for over 15 years. He is both a Certified Internal Auditor and Certified Information Systems Auditor and is moving forward as a thought leader to transform the finance, audit and compliance industry - people-centric, data-driven and context-driven.","url":"https:\/\/zapliance.com\/en\/blog\/author\/alexander-ruehle\/"}]}},"views":874,"_links":{"self":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11250","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/comments?post=11250"}],"version-history":[{"count":2,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11250\/revisions"}],"predecessor-version":[{"id":11254,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11250\/revisions\/11254"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/media\/10699"}],"wp:attachment":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/media?parent=11250"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11250"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}