{"id":11246,"date":"2018-01-25T09:00:00","date_gmt":"2018-01-25T09:00:00","guid":{"rendered":"https:\/\/zapliance.com\/?p=11246"},"modified":"2022-08-26T13:53:25","modified_gmt":"2022-08-26T13:53:25","slug":"tracking-down-rogue-states-in-sap","status":"publish","type":"post","link":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/","title":{"rendered":"Tracking down rogue states in SAP"},"content":{"rendered":"\n<p>Having already identified the top 10 \u201crogue states\u201d in our last Blog Post, this week we can now go on to analyze whether any payments have actually been made to a bank account in one of those dubious states and if so to what extent. So without further ado \u2013 let\u2019s get down to business and get our hands dirty!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The basics of \u201crogue states\u201d<\/h2>\n\n\n\n<p>Perhaps the term \u201crogue states\u201d is completely foreign to you and you are not really sure what it means? If so, I recommend you take a look at the&nbsp;<a href=\"https:\/\/zapliance.com\/blog\/do-you-also-pay-to-banks-in-rogue-states?lang=en\">blog post from last week<\/a>&nbsp;first. But for the more lazy readers out there, here\u2019s a quick recap:<\/p>\n\n\n\n<p>Various organizations deal with the classification of countries in terms of the extent of corruption. This is quite an extensive area, which is why the organizations have different priorities, such as money laundering, financing nuclear weapons or the like. For example, every year the non-governmental organization Transparency International publishes the Corruption Perception Index (CPI), a list of perceived levels of corruption. According to this index, the Scandinavian countries (Denmark, Norway, Sweden, Finland) are among the top 6 with the least perceived corruption. Germany is in 10th place, but it is really the other end of the list that we need to look at to serve as a basis for our analysis in SAP:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Rank<\/th><th>Country<\/th><th>Score<\/th><\/tr><tr><td>166<\/td><td>&nbsp;Iraq<\/td><td>17<\/td><\/tr><tr><td>166<\/td><td>&nbsp;Venezuela<\/td><td>17<\/td><\/tr><tr><td>168<\/td><td>&nbsp;Guinea-Bissau<\/td><td>16<\/td><\/tr><tr><td>169<\/td><td>&nbsp;Afghanistan<\/td><td>15<\/td><\/tr><tr><td>170<\/td><td>&nbsp;Yemen<\/td><td>14<\/td><\/tr><tr><td>170<\/td><td>&nbsp;Libya<\/td><td>14<\/td><\/tr><tr><td>170<\/td><td>&nbsp;Sudan<\/td><td>14<\/td><\/tr><tr><td>174<\/td><td>&nbsp;North Korea<\/td><td>12<\/td><\/tr><tr><td>175<\/td><td>&nbsp;Southern Sudan<\/td><td>11<\/td><\/tr><tr><td>176<\/td><td>&nbsp;Somalia<\/td><td>10<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Now, of course, it depends on your company, your industry and your trade relations, but we would not normally want to be providing support for criminal activities in these countries with funds from our company. We have already identified the top 10 \u201crogue states\u201d. So now let\u2019s see how things look in SAP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Data basis for the evaluation of payments to \u201crogue states\u201d<\/h2>\n\n\n\n<p>Before we can carry out an analysis, we first need the relevant data for an evaluation. We obtain these from the SAP tables \u201cREGUP\u201d (Processed items from the payment program) and \u201cREGUH\u201d (Settlement data from payment program). The tables contain useful information, for example, on the bank code of the payee\u2019s bank, the paying company code, but also the country key of the corresponding bank (REGUH table, fields: ZBNKL, ZBUKR and ZBNKS) or the document number of the paid invoice (REGUP table, field: BELNR). In addition, we are only interested in the actual payments and want to ignore all trial payment runs. This is what the field \u201cXVORL\u201d is for in REGUP and REGUH. This gives us the information we need about the relevant bank data in SAP that was used for payments.<\/p>\n\n\n\n<p>However, we are also interested in the level of cash flows to dubious states. The relevant fields for the evaluation can also be found in the REGUP table:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>BUZEI (Number of Line Item Within Accounting Document)<\/li><li>LIFNR (Account Number of Vendor or Creditor)<\/li><li>SHKZG (Debit\/credit indicator)<\/li><li>DMBTR (Amount in local currency)<\/li><\/ul>\n\n\n\n<p>In addition to the amount of invoices paid and unpaid, it is also possible to determine the absolute number of invoices. If we put the individual pieces of the puzzle together for evaluation in the SQL Editor (SAP transaction: DBACOCKPIT \u2013 Diagnosis \u2013 SQL Editor), we obtain the following query (tested on a HANA database):<\/p>\n\n\n\n<p>SELECT R.MANDT,P.BUKRS,P.GJAHR,ZBNKS BANKCOUNTRY,COUNT(DISTINCT P.BELNR) AMOUNT_INVOICES_PAID,SUM(CASE WHEN P.SHKZG=\u2019H\u2019 THEN P.DMBTR ELSE 0 END) SUM_CREDIT ,SUM(CASE WHEN P.SHKZG=\u2019S\u2019 THEN P.DMBTR ELSE 0 END) SUM_DEBIT, SUM(CASE WHEN P.SHKZG=\u2019H\u2019 THEN P.DMBTR ELSE 0 END)-SUM(CASE WHEN P.SHKZG=\u2019S\u2019 THEN P.DMBTR ELSE 0 END) SUM_PAID<\/p>\n\n\n\n<p>FROM REGUH R JOIN REGUP P ON<\/p>\n\n\n\n<p>(R.MANDT=P.MANDT AND R.LAUFD=P.LAUFD AND R.LAUFI=P.LAUFI AND R.ZBUKR=P.ZBUKR AND R.LIFNR=P.LIFNR AND P.VBLNR=R.VBLNR AND R.EMPFG=P.EMPFG AND ((R.XVORL IS NULL OR R.XVORL LIKE \u201d) AND (P.XVORL IS NULL OR P.XVORL LIKE \u201d)))<\/p>\n\n\n\n<p>WHERE P.LIFNR NOT LIKE \u201d AND R.LIFNR NOT LIKE \u201d AND ZBNKS NOT LIKE \u201d<\/p>\n\n\n\n<p>GROUP BY R.MANDT,P.BUKRS,P.GJAHR,ZBNKS<\/p>\n\n\n\n<p>Don\u2019t worry, the query is only a \u201cSELECT\u201d query, so that we only access the data in read-only. No data is changed in SAP, so that we can happily go ahead and execute the query using the \u201cExecute (F8)\u201d button. The result may look something like this:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/zapliance.com\/wp-content\/uploads\/open-payables.jpg\" alt=\"\" class=\"wp-image-7551\"\/><\/figure>\n\n\n\n<p>This makes it clear very quickly not only which countries payments have been made to (BANKCOUNTRY), but also how high the total liabilities were in the corresponding countries (SUM_CREDIT), how high the potential credits were (SUM_DEBIT) and how much of them have already been paid (SUM_PAID). Using the \u201cExport \u2013 Spreadsheet\u201d option (marked in red in the screenshot), we can also evaluate and visualize the results in Excel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Further analysis in Excel<\/h2>\n\n\n\n<p>This is where we follow our standard procedure, which over the past weeks and months has become established as a tried-and-tested method of visualizing data in Excel: you guessed it, a chart generated from a pivot table.<\/p>\n\n\n\n<p>After exporting the data to Excel, navigate to the \u201cInsert \u2013 PivotTable\u201d tab. Excel should then automatically select the table area, so that we simply have to confirm by clicking \u201cOK\u201d. For the PivotTable, we then select the following fields, for example:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>BANKCOUNTRY (as lines)<\/li><li>AMOUNT_INVOICES_PAID (as values)<\/li><li>SUM_PAID (as values)<\/li><\/ul>\n\n\n\n<p>Once that\u2019s done, we can quickly insert a chart using \u201cInsert \u2013 Charts \u2013 Insert Column Chart \u2013 Clustered Column\u201d and then we are almost finished. In my example, there is an extremely large number of liabilities within Germany, which is why I will use a logarithmic scale to base 10 for the Y-axis. This means that extremely large numbers are relativized and become comparable to smaller values. In the result, only the ratio is displayed and not the absolute values, e.g. the value 100,000 becomes 5; the logarithm of ten becomes somewhat clearer with the representation of its inverse function:<\/p>\n\n\n\n<p>y = 10<sup>X<\/sup>&nbsp;describes the inverse function and is therefore synonymous with x = log (y)<\/p>\n\n\n\n<p>In concrete terms, that means:<\/p>\n\n\n\n<p>Reverse function: 100,000 = 10<sup>5<\/sup><\/p>\n\n\n\n<p>Logarithm: 5 = log (100,000)<\/p>\n\n\n\n<p>You can apply this setting simply by clicking on the scale of the Y-axis and selecting \u201cAxis Options\u201d in the right window and selecting \u201cLogarithmic scale\u201d. Usually, base 10 is the default setting. My result will now look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/zapliance.com\/wp-content\/uploads\/payments-to-rogue-states-analyzed-in-SAP.jpg\" alt=\"\" class=\"wp-image-7555\"\/><\/figure>\n\n\n\n<p>And lo and behold, what do we see? Right next to Japan (JP), there is one of Egypt\u2019s neighbors: Libya (LY). To be totally honest with you, I had to check the country code LY too, because I had no idea what country it was supposed to stand for. Now let\u2019s take a step back and take a look at our top 10 \u201crogue states\u201d: Libya is ranked number 4 next to Sudan and Yemen. So we\u2019ve really hit the bull\u2019s-eye with that one then\u2026.and it\u2019d certainly be worth taking a closer look unless you work for a well-known defense contractor, that is\u2026?<\/p>\n\n\n\n<p>Perhaps any talk of SQL, Queries or SELECT just leaves you plain baffled? Then why not let zap Audit do all the hard work of data analysis for you so that you can concentrate on what you do best: Auditing. After all, that is exactly what zap Audit is designed to do. Automated data analysis in SAP so that the auditor can focus on the essentials. Still having doubts? Then you can find quick and easy answers to any questions you may still have here:<\/p>\n\n\n\n<p>If you don\u2019t ask, you\u2019ll never know.<\/p>\n\n\n\n<p>Put your questions to us, contact us&nbsp;<a href=\"https:\/\/zapliance.com\/contact?lang=en\">here<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Having already identified the top 10 \u201crogue states\u201d in our last Blog Post, this week we can now go on to analyze whether any payments have actually been made to a bank account in one of those dubious states and if so to what extent. So without further ado \u2013 let\u2019s get down to business [&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":[38,37,40],"tags":[],"class_list":["post-11246","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>Tracking down rogue states 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\/tracking-down-rogue-states-in-sap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tracking down rogue states in SAP - zapliance\" \/>\n<meta property=\"og:description\" content=\"Having already identified the top 10 \u201crogue states\u201d in our last Blog Post, this week we can now go on to analyze whether any payments have actually been made to a bank account in one of those dubious states and if so to what extent. So without further ado \u2013 let\u2019s get down to business [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-25T09:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:53:25+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/\"},\"author\":{\"name\":\"Alexander Ruehle\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211\"},\"headline\":\"Tracking down rogue states in SAP\",\"datePublished\":\"2018-01-25T09:00:00+00:00\",\"dateModified\":\"2022-08-26T13:53:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/\"},\"wordCount\":1289,\"publisher\":{\"@id\":\"https:\/\/zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-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\/tracking-down-rogue-states-in-sap\/\",\"url\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/\",\"name\":\"Tracking down rogue states in SAP - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2018-01-25T09:00:00+00:00\",\"dateModified\":\"2022-08-26T13:53:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-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\/tracking-down-rogue-states-in-sap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tracking down rogue states 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\/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":"Tracking down rogue states 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\/tracking-down-rogue-states-in-sap\/","og_locale":"en_US","og_type":"article","og_title":"Tracking down rogue states in SAP - zapliance","og_description":"Having already identified the top 10 \u201crogue states\u201d in our last Blog Post, this week we can now go on to analyze whether any payments have actually been made to a bank account in one of those dubious states and if so to what extent. So without further ado \u2013 let\u2019s get down to business [&hellip;]","og_url":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/","og_site_name":"zapliance","article_published_time":"2018-01-25T09:00:00+00:00","article_modified_time":"2022-08-26T13:53:25+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":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#article","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/"},"author":{"name":"Alexander Ruehle","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/215958640076a72c61876b1ec9e23211"},"headline":"Tracking down rogue states in SAP","datePublished":"2018-01-25T09:00:00+00:00","dateModified":"2022-08-26T13:53:25+00:00","mainEntityOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/"},"wordCount":1289,"publisher":{"@id":"https:\/\/zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-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\/tracking-down-rogue-states-in-sap\/","url":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/","name":"Tracking down rogue states in SAP - zapliance","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#primaryimage"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2018-01-25T09:00:00+00:00","dateModified":"2022-08-26T13:53:25+00:00","breadcrumb":{"@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-in-sap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/blog\/tracking-down-rogue-states-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\/tracking-down-rogue-states-in-sap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"Tracking down rogue states 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\/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":1504,"_links":{"self":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11246","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=11246"}],"version-history":[{"count":1,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11246\/revisions"}],"predecessor-version":[{"id":11247,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11246\/revisions\/11247"}],"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=11246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}