{"id":11148,"date":"2019-02-28T15:00:00","date_gmt":"2019-02-28T15:00:00","guid":{"rendered":"https:\/\/staging.zapliance.com\/?p=11148"},"modified":"2022-08-26T13:35:24","modified_gmt":"2022-08-26T13:35:24","slug":"journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted","status":"publish","type":"post","link":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/","title":{"rendered":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted?"},"content":{"rendered":"\n<p>In this blog post, we are once again going to devote our attention to the topic of Journal Entry Testing. I\u2019ll show you how to use SQL in SAP to find out how much each SAP user has posted, as well as how many reversals there have been and in what time span. This gives you a good impression of how many accounting errors have been made and whether, for example, documents were posted late. A good introduction to posting data!<\/p>\n\n\n\n<p>In this blog post, we are going to generate a statistic that shows which user has posted how much and get an impression of how many people are involved in accounting and how much has been posted automatically.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Statistics: Number of postings per user<\/h2>\n\n\n\n<p>Let\u2019s start by taking a look at which users have been the most diligent accountants. At this point, we should point out that there are certain aspects related to works council rights that need to be taken into account when performing such an evaluation, because such an evaluation could be considered to constitute a check on employee performance. In such a case, the works council has to have a say in co-determining any such checks, as specified in Section 87 (1) Point 6 of the German Works Constitution Act (<em>Betriebsverfassungsgesetz \u2013 BetrVG<\/em>) specifies:<\/p>\n\n\n\n<p>\u201cSection 87 Right of co-determination<\/p>\n\n\n\n<p>(1) The works council shall have a say in the following matters insofar as there is no statutory or collective regulation:<\/p>\n\n\n\n<p>\u2026<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"6\"><li>the introduction and use of technical devices designed to monitor the behaviour or performance of the employees;<\/li><\/ol>\n\n\n\n<p>\u2026\u201d<\/p>\n\n\n\n<p>Nevertheless, such forms of evaluation do appear to be used as a standard means of evaluation in the field of Journal Entry Testing (see also: Journal Entry Testing by Droste and Tritschler published by IDW Verlag).<\/p>\n\n\n\n<p>So without further ado, here\u2019s the appropriate SQL query you need to do just that. You can use a DIY approach by calling the \u201cDBACOCKPIT\u201d transaction in SAP and navigating to the \u201cSQL Editor\u201d via \u201cDiagnostics\u201d. Or, alternatively, you can also use SAP HANA Studio. The following SQL queries have already been tested on an SAP HANA database:<\/p>\n\n\n\n<p><code>SELECT USNAM, USR02.USTYP, COUNT(*) DOCUMENTS, COUNT(CASE WHEN STBLG != '' THEN BELNR ELSE null END) REVERSED, ROUND(CAST(COUNT(*) AS INTEGER)\/(SELECT COUNT(*) FROM BKPF WHERE BKPF.MANDT = '800' AND BKPF.BUKRS = '1000' AND GJAHR =&nbsp;1997) * 100,2) PORTION, MIN(CPUDT), MAX(CPUDT)<br>FROM BKPF<br>LEFT JOIN USR02 ON (USR02.MANDT = BKPF.MANDT AND USR02.BNAME = BKPF.USNAM) WHERE BKPF.MANDT = '800' AND BKPF.BUKRS = '1000' AND GJAHR =&nbsp;1997<br>GROUP BY USNAM, USTYP<br>ORDER BY COUNT(*) DESC<\/code><\/p>\n\n\n\n<p>Replace MANDT=\u2019800\u2032 and BUKRS=\u20191000\u2032 with your client and company code and GJAHR=1997 with the fiscal year you wish to examine.<\/p>\n\n\n\n<p>My test data set gives the following results (excerpt):<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>USNAM<\/th><th>USTYP<\/th><th>DOCUMENTS<\/th><th>REVERSED<\/th><th>PORTION<\/th><th>MIN<br>(CPUDT)<\/th><th>MAX (CPUDT)<\/th><\/tr><tr><td>USER_130<\/td><td>B<\/td><td>1.830<\/td><td>0<\/td><td>25.92<\/td><td>19970409<\/td><td>19970413<\/td><\/tr><tr><td>USER_90<\/td><td>A<\/td><td>1.565<\/td><td>0<\/td><td>22.17<\/td><td>19970122<\/td><td>19971219<\/td><\/tr><tr><td>USER_127<\/td><td>B<\/td><td>1.085<\/td><td>0<\/td><td>15.37<\/td><td>19980917<\/td><td>19980917<\/td><\/tr><tr><td>USER_131<\/td><td>A<\/td><td>721<\/td><td>0<\/td><td>10.21<\/td><td>19970417<\/td><td>19971222<\/td><\/tr><tr><td>USER_128<\/td><td>B<\/td><td>368<\/td><td>14<\/td><td>5.21<\/td><td>19970116<\/td><td>19971006<\/td><\/tr><tr><td>USER_149<\/td><td>A<\/td><td>322<\/td><td>0<\/td><td>4.56<\/td><td>19981209<\/td><td>19990514<\/td><\/tr><tr><td>\u2026<\/td><td>\u2026<\/td><td>\u2026<\/td><td>\u2026<\/td><td>\u2026<\/td><td>\u2026<\/td><td>\u2026<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The table shows which user (USNAM) has posted how much (DOCUMENTS). The user type (USTYP) is also specified. It means:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A = Dialog user<\/li><li>B = System user<\/li><\/ul>\n\n\n\n<p>\u201cREVERSED\u201d specifies the number of reversed documents below (that is, the number of reversed documents plus the reversal documents).<\/p>\n\n\n\n<p>\u201cPORTION\u201d is the percentage of all postings.<\/p>\n\n\n\n<p>\u201cMIN(CPUDT)\u201d is the entry date of the earliest document and \u201cMAX(CPUDT)\u201d is the entry date of the latest document for the user.<\/p>\n\n\n\n<p>With the help of this simple statistic, you can answer the following questions:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><em>How many postings were made automatically, and how many manually?<\/em>&nbsp;You can determine this by looking at the user type. System users (B) tend to indicate automatic postings, while dialog users (A) tend to correspond to manual postings. On the basis of this, it is possible to gain an idea of the degree of automation or digitization of accounting.<\/li><li><em>How much has each user posted?<\/em>&nbsp;This can be seen from the total number of documents per user (DOCUMENTS) or the percentage share (PORTION). Plus, the most diligent users are to be found at the top of the list.<\/li><li><em>How many incorrect postings have been made?<\/em>&nbsp;This can easily be seen by looking at the number of reversed documents (REVERSED) in relation to the total number of documents for the user (DOCUMENTS).<\/li><li><em>Has a late posting been made again to a previous period?<\/em>&nbsp;You can see this in the MAX(CPUDT) column. The fiscal year in this case is 1997. However, you can see that some users posted late in 1998 to the fiscal year 1997. From this, you can gain some idea of how quickly the year-end closing was prepared.<\/li><\/ol>\n\n\n\n<p>Perhaps SQL, SAP tables, BKPF and SELECT are terms which mean nothing to you? Or maybe you have concerns about analyzing personal data? Then let zap Audit \u2013 with its integrated pseudonymization \u2013 do the work for you, leaving you to concentrate on what is most important: Auditing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we are once again going to devote our attention to the topic of Journal Entry Testing. I\u2019ll show you how to use SQL in SAP to find out how much each SAP user has posted, as well as how many reversals there have been and in what time span. This gives [&hellip;]<\/p>\n","protected":false},"author":4,"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":[38,37,40],"tags":[],"class_list":["post-11148","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-en-audit","category-en-compliance","category-en-finance"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we are once again going to devote our attention to the topic of Journal Entry Testing. I\u2019ll show you how to use SQL in SAP to find out how much each SAP user has posted, as well as how many reversals there have been and in what time span. This gives [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-28T15:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:35:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/staging.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=\"Nick Gehrke\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nick Gehrke\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\"},\"author\":{\"name\":\"Nick Gehrke\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/8082e13c2d71610651baf9627ea0e18f\"},\"headline\":\"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted?\",\"datePublished\":\"2019-02-28T15:00:00+00:00\",\"dateModified\":\"2022-08-26T13:35:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\"},\"wordCount\":741,\"publisher\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"articleSection\":[\"Audit\",\"Compliance\",\"Finance\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\",\"url\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\",\"name\":\"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2019-02-28T15:00:00+00:00\",\"dateModified\":\"2022-08-26T13:35:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage\",\"url\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"contentUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"width\":2400,\"height\":962},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/staging.zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#website\",\"url\":\"https:\/\/staging.zapliance.com\/en\/\",\"name\":\"zapliance\",\"description\":\"Be the agent of change\",\"publisher\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.zapliance.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#organization\",\"name\":\"zapliance\",\"url\":\"https:\/\/staging.zapliance.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg\",\"contentUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg\",\"width\":200,\"height\":45,\"caption\":\"zapliance\"},\"image\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/8082e13c2d71610651baf9627ea0e18f\",\"name\":\"Nick Gehrke\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_4_1657803044-96x96.jpg\",\"contentUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_4_1657803044-96x96.jpg\",\"caption\":\"Nick Gehrke\"},\"description\":\"is Chief of Data &amp; Knowledge and Co-Founder at zapliance as well as Professor of Information Systems with a Big 4 background. He prefers to work as a business information scientist and tax consultant at the converging points of finance, accounting, taxation, audit and ERP systems, data science and information technology.\",\"url\":\"https:\/\/staging.zapliance.com\/en\/blog\/author\/nick-gehrke\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance","og_description":"In this blog post, we are once again going to devote our attention to the topic of Journal Entry Testing. I\u2019ll show you how to use SQL in SAP to find out how much each SAP user has posted, as well as how many reversals there have been and in what time span. This gives [&hellip;]","og_url":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/","og_site_name":"zapliance","article_published_time":"2019-02-28T15:00:00+00:00","article_modified_time":"2022-08-26T13:35:24+00:00","og_image":[{"width":2400,"height":962,"url":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","type":"image\/png"}],"author":"Nick Gehrke","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nick Gehrke","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#article","isPartOf":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/"},"author":{"name":"Nick Gehrke","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/8082e13c2d71610651baf9627ea0e18f"},"headline":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted?","datePublished":"2019-02-28T15:00:00+00:00","dateModified":"2022-08-26T13:35:24+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/"},"wordCount":741,"publisher":{"@id":"https:\/\/staging.zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","articleSection":["Audit","Compliance","Finance"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/","url":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/","name":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted? - zapliance","isPartOf":{"@id":"https:\/\/staging.zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage"},"image":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2019-02-28T15:00:00+00:00","dateModified":"2022-08-26T13:35:24+00:00","breadcrumb":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#primaryimage","url":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","contentUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","width":2400,"height":962},{"@type":"BreadcrumbList","@id":"https:\/\/staging.zapliance.com\/en\/blog\/journal-entry-testing-who-posts-wins-or-how-much-has-each-user-posted\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/staging.zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"Journal Entry Testing: Who posts wins \u2013 or: How much has each user posted?"}]},{"@type":"WebSite","@id":"https:\/\/staging.zapliance.com\/en\/#website","url":"https:\/\/staging.zapliance.com\/en\/","name":"zapliance","description":"Be the agent of change","publisher":{"@id":"https:\/\/staging.zapliance.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.zapliance.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/staging.zapliance.com\/en\/#organization","name":"zapliance","url":"https:\/\/staging.zapliance.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg","contentUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/06\/zap_logo.svg","width":200,"height":45,"caption":"zapliance"},"image":{"@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/8082e13c2d71610651baf9627ea0e18f","name":"Nick Gehrke","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_4_1657803044-96x96.jpg","contentUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/07\/avatar_user_4_1657803044-96x96.jpg","caption":"Nick Gehrke"},"description":"is Chief of Data &amp; Knowledge and Co-Founder at zapliance as well as Professor of Information Systems with a Big 4 background. He prefers to work as a business information scientist and tax consultant at the converging points of finance, accounting, taxation, audit and ERP systems, data science and information technology.","url":"https:\/\/staging.zapliance.com\/en\/blog\/author\/nick-gehrke\/"}]}},"views":1140,"_links":{"self":[{"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11148","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/comments?post=11148"}],"version-history":[{"count":1,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11148\/revisions"}],"predecessor-version":[{"id":11149,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11148\/revisions\/11149"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/media\/10699"}],"wp:attachment":[{"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/media?parent=11148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}