{"id":11200,"date":"2018-08-01T12:00:00","date_gmt":"2018-08-01T12:00:00","guid":{"rendered":"https:\/\/zapliance.com\/?p=11200"},"modified":"2022-08-26T13:43:57","modified_gmt":"2022-08-26T13:43:57","slug":"how-to-discover-dubious-posting-structures-in-sap","status":"publish","type":"post","link":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/","title":{"rendered":"How to discover dubious posting structures in SAP"},"content":{"rendered":"\n<p>In today\u2019s blog post, we are going to take a look at how to identify \u201cdubious\u201d posting structures within SAP\u2019s financial accounting. I will show you how to quickly find posting structures in SAP and how to know which ones you should perhaps take a closer look at, because they do not meet the usual expectations!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a \u201cdubious\u201d posting structure?<\/h2>\n\n\n\n<p>Okay, I admit, the word \u201cdubious\u201d sounds somewhat casual and may seem a bit too vague at first to be a notion that you can really work with properly. But let me start by explaining the approach.<\/p>\n\n\n\n<p>Since the days of&nbsp;<a href=\"https:\/\/en.wikipedia.org\/wiki\/Luca_Pacioli\">Luca Pacioli<\/a>, it has been well known to humanity that making a posting in financial accounting consists of posting lines to accounts (for example, in debit) and offsetting accounts (for example, in credit), whereby the posted amounts must always correspond in debit and credit. From an audit perspective, this is probably one of the first and perhaps the most important internal controls when it comes to accounting.<\/p>\n\n\n\n<p>As a rule, the auditor often is sufficiently familiar with accounting that he can always imagine what usual offsetting accounts will be when he is looking at a particular financial accounting account in which he is particularly interested. This means that there are typical offsetting accounts for each account. If an untypical offsetting account has been posted, then we are going to refer to this as \u201cdubious\u201d in what follows and it should then serve as reason for us to drill down deeper.<\/p>\n\n\n\n<p>So ultimately this is about an analysis of&nbsp;<strong>offsetting accounts<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">First form an expectation<\/h2>\n\n\n\n<p>We will first illustrate the formation of expectations using two concrete examples.<\/p>\n\n\n\n<p>In our test data set, there are two accounts in which we are particularly interested:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>0000800000 Sales revenue<\/li><li>0000113100 Deutsche Bank<\/li><\/ul>\n\n\n\n<p>Sales revenues are mainly posted to credit, as these are revenues. As offsetting accounts on the debit side, of course, we would expect to have&nbsp;<em>receivables<\/em>, although we might still have to contend with&nbsp;<em>sales deductions<\/em>. We would not expect any offsetting accounts of a different nature at first.<\/p>\n\n\n\n<p>With the Deutsche Bank account, we want to look at withdrawals, i.e. we are interested in credit postings. Offsetting accounts that we would expect on the debit side are, for example,&nbsp;<em>liabilities<\/em>, or&nbsp;<em>taxes paid<\/em>&nbsp;perhaps, and transfers from&nbsp;<em>other bank accounts.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Revenue analysis<\/h2>\n\n\n\n<p>This is where things start to get really interesting!<\/p>\n\n\n\n<p>Once we have selected the two accounts, we want to find out what the offsetting accounts are on the debit side for the sales revenue on account \u201c0000800000\u201d. The following SQL Query is used to do this. To execute the query, use transaction \u201cDBACOCKPIT\u201d in SAP and navigate in the lefthand directory to \u201cDiagnostics \u2013 SQL Editor\u201d (tested on a HANA DB):<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>1<\/td><td><code>SELECT CONTRA.HKONT ACCOUNT, SKAT.TXT50 ACCOUNT_NAME, CONTRA.SHKZG DEBIT_OR_CREDIT, COUNT(DISTINCT CONTRA.BELNR) NUMBER_OF_DOCUMENTS FROM BSEG<\/code><\/td><td>The number and name of the offsetting accounts, debit or credit indicator (SHKZG) and the amount of documents the offsetting account is related in.<\/td><\/tr><tr><td><code>JOIN BKPF ON (BSEG.MANDT=BKPF.MANDT AND BSEG.BUKRS=BKPF.BUKRS AND BSEG.GJAHR=BKPF.GJAHR AND BSEG.BELNR=BKPF.BELNR)<\/code><\/td><td>Join on table accounting document header<\/td><\/tr><tr><td><code>JOIN BSEG CONTRA ON (BSEG.MANDT=CONTRA.MANDT AND BSEG.BUKRS=CONTRA.BUKRS AND BSEG.GJAHR=CONTRA.GJAHR AND BSEG.BELNR=CONTRA.BELNR AND BSEG.SHKZG!=CONTRA.SHKZG)<\/code><\/td><td>Join on corresponding line items If revenue is in credit, the corresponding line item is in debit. \u201c!= means unlike\u201d<\/td><\/tr><tr><td><code>LEFT JOIN T001 ON (T001.MANDT=CONTRA.MANDT AND T001.BUKRS=CONTRA.BUKRS)<\/code><\/td><td>Join on table account master record and company code details<\/td><\/tr><tr><td><code>LEFT JOIN SKAT ON (T001.MANDT=SKAT.MANDT AND T001.KTOPL=SKAT.KTOPL AND SKAT.SAKNR=CONTRA.HKONT AND SKAT.SPRAS='E')<\/code><\/td><\/tr><tr><td><code>WHERE BSEG.HKONT='0000800000' AND BSEG.SHKZG='H' AND BKPF.STBLG = '' AND BSEG.GJAHR=1997 AND BSEG.BUKRS='1000'<\/code><\/td><td>The account of interest: Sales&nbsp;revenues in debit;&nbsp; Only none reversed documents; company code and year of choice<\/td><\/tr><tr><td><code>GROUP BY CONTRA.HKONT, CONTRA.HKONT, CONTRA.SHKZG, SKAT.TXT50;<\/code><\/td><td>Aggregation by Account<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>(Further below you can easily copy the query at the Deutsche Bank analysis)<\/p>\n\n\n\n<p>If you want to try this out for yourself, then you must of course insert your own financial accounting account and your own side of the accounts (S = debit or H = credit) in the \u201cWHERE\u201d condition accordingly:<\/p>\n\n\n\n<p><code>WHERE BSEG.HKONT='0000113100' AND BSEG.SHKZG='H'<\/code><\/p>\n\n\n\n<p>In addition, you must adapt the query with both your own company code and the fiscal year you wish to consider:<\/p>\n\n\n\n<p><code>BSEG.GJAHR=1997 AND BSEG.BUKRS='1000'<\/code><\/p>\n\n\n\n<p>In our test data set, the following offsetting accounts for the sales revenue come up:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>ACCOUNT<\/th><th>ACCOUNT_NAME<\/th><th>DEBIT_OR_<br>CREDIT<\/th><th>NUMBER_OF_<br>DOCUMENTS<\/th><\/tr><tr><td>113102<\/td><td>Deutsche Bank \u2013 domestic bank tranfers<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>154000<\/td><td>Input tax<\/td><td>S<\/td><td>13<\/td><\/tr><tr><td>400010<\/td><td>Raw materials consumed<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>417000<\/td><td>Purchased services<\/td><td>S<\/td><td>13<\/td><\/tr><tr><td>230051<\/td><td>Gain\/loss Euro conversion \/ document difference<\/td><td>S<\/td><td>3<\/td><\/tr><tr><td>400000<\/td><td>Consumption, raw material<\/td><td>S<\/td><td>6<\/td><\/tr><tr><td>410000<\/td><td>Usage: trading goods<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>113101<\/td><td>Deutsche Bank \u2013 checks payable<\/td><td>S<\/td><td>1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>When reviewing the results, we discover the receivables and sales deductions as previously expected. We also find a few currency gains or losses that were not part of our initial our expectations, but which are not exactly surprising. The whole thing therefore does not really seem very unusual, which is why we are not going analyze this account in any more detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Investigation of the bank account<\/h2>\n\n\n\n<p>Having not noticed any unusual changes in revenues, we will now take a look at the payments with respect to Deutsche Bank. To do this, we can use the same SQL query and simply swap out the account for sales revenue \u201c0000800000\u201d with the account for Deutsche Bank \u201c0000113100\u201d in the WHERE condition (tested on a HANA DB):<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>2<\/td><td><code>SELECT CONTRA.HKONT ACCOUNT ,SKAT.TXT50 ACCOUNT_NAME, CONTRA.SHKZG DEBIT_OR_CREDIT,COUNT(DISTINCT CONTRA.BELNR) NUMBER_OF_DOCUMENTS FROM BSEG<br>JOIN BKPF ON (BSEG.MANDT=BKPF.MANDT AND BSEG.BUKRS=BKPF.BUKRS AND BSEG.GJAHR=BKPF.GJAHR AND BSEG.BELNR=BKPF.BELNR)<br>JOIN BSEG CONTRA ON (BSEG.MANDT=CONTRA.MANDT AND BSEG.BUKRS=CONTRA.BUKRS AND BSEG.GJAHR=CONTRA.GJAHR AND BSEG.BELNR=CONTRA.BELNR AND BSEG.SHKZG!=CONTRA.SHKZG )<br>LEFT JOIN T001 ON (T001.MANDT=CONTRA.MANDT AND T001.BUKRS=CONTRA.BUKRS)<br>LEFT JOIN SKAT ON (T001.MANDT=SKAT.MANDT AND T001.KTOPL=SKAT.KTOPL AND SKAT.SAKNR=CONTRA.HKONT AND SKAT.SPRAS='E')<br>WHERE BSEG.HKONT='0000113100' AND BSEG.SHKZG='H' AND BKPF.STBLG IS NULL AND BSEG.GJAHR=1997 AND BSEG.BUKRS='1000'<br>GROUP BY CONTRA.HKONT,CONTRA.HKONT,CONTRA.SHKZG,SKAT.TXT50;<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>After executing the query, our test data set gives us the following result:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>ACCOUNT<\/th><th>ACCOUNT_NAME<\/th><th>DEBIT_OR_<br>CREDIT<\/th><th>NUMBER_OF_<br>DOCUMENTS<\/th><\/tr><tr><td>113102<\/td><td>Deutsche Bank \u2013 domestic bank tranfers<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>154000<\/td><td>Input tax<\/td><td>S<\/td><td>13<\/td><\/tr><tr><td>400010<\/td><td>Raw materials consumed<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>417000<\/td><td>Purchased services<\/td><td>S<\/td><td>13<\/td><\/tr><tr><td>230051<\/td><td>Gain\/loss Euro conversion \/ document difference<\/td><td>S<\/td><td>3<\/td><\/tr><tr><td>400000<\/td><td>Consumption, raw material<\/td><td>S<\/td><td>6<\/td><\/tr><tr><td>410000<\/td><td>Usage: trading goods<\/td><td>S<\/td><td>1<\/td><\/tr><tr><td>113101<\/td><td>Deutsche Bank \u2013 checks payable<\/td><td>S<\/td><td>1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Now let\u2019s take a look through the accounts again. What is striking here is that we cannot find any liabilities on an offsetting account at all.<\/p>\n\n\n\n<p><em>That\u2019s strange!<\/em><\/p>\n\n\n\n<p>Apparently, no suppliers are paid from this bank account. The sales taxes paid are not surprising as an offsetting account. But it is certainly strange that the expense accounts \u201cRaw Material consumed\u201d were posted and especially that this has been done directly against Cash! And apparently services were also posted directly against the bank (\u201cPurchased services\u201d). Normally there should be a liability for such services first, which is then paid. This was probably not the case here and this has also occurred with 13 different documents. This does not really correspond to our expectations and therefore the next step should be to examine which individual documents are behind this more closely. We will provide an example for the relevant documents relating to the \u201cPurchased services\u201d offsetting account.<\/p>\n\n\n\n<p>It couldn\u2019t be more simple:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>3<\/td><td><code>SELECT DISTINCT BSEG.BELNR FROM BSEG<\/code><\/td><td>Only showing document numbers once (distinct)<\/td><\/tr><tr><td><code>JOIN BKPF ON (BSEG.MANDT=BKPF.MANDT AND BSEG.BUKRS=BKPF.BUKRS AND BSEG.GJAHR=BKPF.GJAHR AND BSEG.BELNR=BKPF.BELNR)<\/code><\/td><td>Join on table accounting document header<\/td><\/tr><tr><td><code>WHERE BSEG.SHKZG='H' AND BSEG.HKONT='0000113100' AND EXISTS<\/code><\/td><td>Account of interest is the Deutsche Bank debit (only the outgoing payments)<\/td><\/tr><tr><td><code>(SELECT * FROM BSEG CONTRA WHERE BSEG.MANDT=CONTRA.MANDT AND BSEG.BUKRS=CONTRA.BUKRS AND BSEG.GJAHR=CONTRA.GJAHR AND BSEG.BELNR=CONTRA.BELNR AND BSEG.SHKZG!=CONTRA.SHKZG AND CONTRA.HKONT='0000417000')<\/code><\/td><td>Documents are of interest only if the offsetting account \u20180000417000\u2019 = \u2018Purchased services\u2019 is related.<\/td><\/tr><tr><td><code>AND BKPF.STBLG = '';<\/code><\/td><td>Reversed documents excluded<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><br>When executing the query, you get the relevant document numbers, for example:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>BELNR<\/th><\/tr><tr><td>100007425<\/td><td>100007426<\/td><td>100007427<\/td><\/tr><tr><td>100007428<\/td><td>100007605<\/td><td>100007606<\/td><\/tr><tr><td>100007607<\/td><td>100007608<\/td><td>100007609<\/td><\/tr><tr><td>100007342<\/td><td>100007343<\/td><td>100007610<\/td><\/tr><tr><td>100007424<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>One should now take a closer look at these documents in order to track down this \u201cdubious\u201d posting structure.<\/p>\n\n\n\n<p><strong>And what now?<\/strong><\/p>\n\n\n\n<p>Data analysis is a powerful tool. Those who can carry out the right analysis exactly when they need it and are in a position to question the data accordingly are the lucky ones!<\/p>\n\n\n\n<p>But SQL is not everyone\u2019s cup of tea and even today it is till hard to find colleagues in auditing who are both adept in commercial matters and in data science.<\/p>\n\n\n\n<p>This is where our offer comes in: Put zapliance to the test and leave the data science tasks completely to the software. For small company codes, you can even do this completely free of charge. The trial includes more than 150 automated&nbsp;audit questions \/ data indicators, integrated process mining and there are no functional restrictions. So you can be sure to find at least one or two of the data analyses you need. Make a free appointment with us without obligation and we will show you how to make the most of our advanced audit and data analysis software in one quick walkthrough.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In today\u2019s blog post, we are going to take a look at how to identify \u201cdubious\u201d posting structures within SAP\u2019s financial accounting. I will show you how to quickly find posting structures in SAP and how to know which ones you should perhaps take a closer look at, because they do not meet the usual [&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-11200","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.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to discover dubious posting structures in SAP - 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\/how-to-discover-dubious-posting-structures-in-sap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to discover dubious posting structures in SAP - zapliance\" \/>\n<meta property=\"og:description\" content=\"In today\u2019s blog post, we are going to take a look at how to identify \u201cdubious\u201d posting structures within SAP\u2019s financial accounting. I will show you how to quickly find posting structures in SAP and how to know which ones you should perhaps take a closer look at, because they do not meet the usual [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-01T12:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:43:57+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=\"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=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\"},\"author\":{\"name\":\"Nick Gehrke\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/ef4d227360d4b66b84aa95cb72c12f5a\"},\"headline\":\"How to discover dubious posting structures in SAP\",\"datePublished\":\"2018-08-01T12:00:00+00:00\",\"dateModified\":\"2022-08-26T13:43:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\"},\"wordCount\":1278,\"publisher\":{\"@id\":\"https:\/\/zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"articleSection\":[\"Audit\",\"Compliance\",\"Finance\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\",\"url\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\",\"name\":\"How to discover dubious posting structures in SAP - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2018-08-01T12:00:00+00:00\",\"dateModified\":\"2022-08-26T13:43:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#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\/how-to-discover-dubious-posting-structures-in-sap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to discover dubious posting structures in SAP\"}]},{\"@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\/ef4d227360d4b66b84aa95cb72c12f5a\",\"name\":\"Nick Gehrke\",\"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_4_1657803044-96x96.jpg\",\"contentUrl\":\"https:\/\/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:\/\/zapliance.com\/en\/blog\/author\/nick-gehrke\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to discover dubious posting structures in SAP - 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\/how-to-discover-dubious-posting-structures-in-sap\/","og_locale":"en_US","og_type":"article","og_title":"How to discover dubious posting structures in SAP - zapliance","og_description":"In today\u2019s blog post, we are going to take a look at how to identify \u201cdubious\u201d posting structures within SAP\u2019s financial accounting. I will show you how to quickly find posting structures in SAP and how to know which ones you should perhaps take a closer look at, because they do not meet the usual [&hellip;]","og_url":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/","og_site_name":"zapliance","article_published_time":"2018-08-01T12:00:00+00:00","article_modified_time":"2022-08-26T13:43:57+00:00","og_image":[{"width":2400,"height":962,"url":"https:\/\/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":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#article","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/"},"author":{"name":"Nick Gehrke","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/ef4d227360d4b66b84aa95cb72c12f5a"},"headline":"How to discover dubious posting structures in SAP","datePublished":"2018-08-01T12:00:00+00:00","dateModified":"2022-08-26T13:43:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/"},"wordCount":1278,"publisher":{"@id":"https:\/\/zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","articleSection":["Audit","Compliance","Finance"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/","url":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/","name":"How to discover dubious posting structures in SAP - zapliance","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2018-08-01T12:00:00+00:00","dateModified":"2022-08-26T13:43:57+00:00","breadcrumb":{"@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/blog\/how-to-discover-dubious-posting-structures-in-sap\/#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\/how-to-discover-dubious-posting-structures-in-sap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"How to discover dubious posting structures in SAP"}]},{"@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\/ef4d227360d4b66b84aa95cb72c12f5a","name":"Nick Gehrke","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_4_1657803044-96x96.jpg","contentUrl":"https:\/\/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:\/\/zapliance.com\/en\/blog\/author\/nick-gehrke\/"}]}},"views":1400,"_links":{"self":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11200","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\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/comments?post=11200"}],"version-history":[{"count":1,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11200\/revisions"}],"predecessor-version":[{"id":11201,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11200\/revisions\/11201"}],"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=11200"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11200"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}