{"id":11190,"date":"2018-09-13T11:00:00","date_gmt":"2018-09-13T11:00:00","guid":{"rendered":"https:\/\/staging.zapliance.com\/?p=11190"},"modified":"2022-08-26T13:42:26","modified_gmt":"2022-08-26T13:42:26","slug":"the-madness-of-exchange-rate-fraud-in-sap","status":"publish","type":"post","link":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/","title":{"rendered":"The madness of exchange rate fraud in SAP"},"content":{"rendered":"\n<p>\u201cTwo things can drive a person mad: jealousy and the study of exchange rates.\u201d<\/p>\n\n\n\n<p><a href=\"https:\/\/www.zitate.de\/autor\/P%C3%B6psel%2C+Frank\" rel=\"noreferrer noopener\" target=\"_blank\">Frank P\u00f6psel, German journalist (\u201cCapital\u201d) (Translated from the German)<\/a><\/p>\n\n\n\n<p>SAP remains very true to the spirit of Frank P\u00f6psel\u2019s words by surprising us with a particular scenario relating to exchange rates that we would like to present to you here today. In this post, the focus will be on erroneous exchange rates, used, for example, to circumvent order release limits.<\/p>\n\n\n\n<p>When you create a purchase order in foreign currency, exchange rates are taken from the \u201cTCURR\u201d table in SAP to convert the purchase order value into local currency. However, this predefined value can be overwritten manually by the user \u2013 the amount of the purchase order in local currency is then deliberately displayed as too low (or too high). Assuming a valid exchange rate of 1 EURO to 1.23456 USD, our example is based on 2 scenarios:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Creation of an order with an exchange rate of 1 Euro to 111 USD and subsequent change of this exchange rate from 1 Euro to 555 USD. An order for an amount of 500,000 USD is then stored as \u201conly\u201d 901 EURO in the system instead of 405,003 EURO.<\/li><li>Creation of an order with an exchange rate of 1 Euro to 333 USD without any subsequent change. This purchase order for an amount of 500,000 USD is stored in the system as \u201conly\u201d 1,502 EURO.<\/li><\/ol>\n\n\n\n<p>This raises the question of where this deviation from the exchange rates stored in the system has come from.<\/p>\n\n\n\n<p>First assumption \u2013 these adjustments can be seen in the change tables. It should be noted that the exchange rate used is stored in the \u201cWKURS\u201d data field in the \u201cEKKO\u201d table. The following SQL query displays such changes:<\/p>\n\n\n\n<p><code>SELECT OBJECTCLAS, OBJECTID, TABNAME, FNAME, CHNGIND, VALUE_NEW, VALUE_OLD FROM CDPOS WHERE MANDANT = 800 AND TABNAME LIKE 'EKKO' AND FNAME LIKE 'WKURS'<\/code><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th><strong>OBJECTCLAS<\/strong><\/th><th><strong>OBJECTID<\/strong><\/th><th><strong>TABNAME<\/strong><\/th><th><strong>FNAME<\/strong><\/th><th><strong>CHNGIND<\/strong><\/th><th><strong>VALUE_NEW<\/strong><\/th><th><strong>VALUE_OLD<\/strong><\/th><\/tr><tr><td>EINKBELEG<\/td><td>4500022429<\/td><td>EKKO<\/td><td>WKURS<\/td><td>U<\/td><td>555.00000<\/td><td>111.00000<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The \u201cCHNGIND\u201d data field with the specification \u201cU\u201d indicates that the purchase order with the number 4500022429 was subsequently changed \u2013 that is, the original exchange rate 111 (VALUE_OLD data field) was changed to 555 (VALUE_NEW) when it was created.<\/p>\n\n\n\n<p>This analysis procedure allows us to see the example described in scenario a but is unfortunately incomplete as a result. An incorrect exchange rate that is entered directly when the purchase order is created \u2013 that is, scenario b \u2013 is not shown. Such entries are displayed in the change document tables as INSERT (CHNGIND = I). This is logical in so far as the purchase order was created and not subsequently changed.<\/p>\n\n\n\n<p>With this in mind, in the next step, the content of the \u201cEKKO\u201d table in the \u201cWKURS\u201d data field is compared with the content of the \u201cTCURR\u201d table. The following statement shows an example of the contents of the \u201cTCURR\u201d table:<\/p>\n\n\n\n<p><code>SELECT KURST, FCURR, TCURR, GDATU, UKURS FROM TCURR<\/code><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th><strong>KURST<\/strong><\/th><th><strong>FCURR<\/strong><\/th><th><strong>TCURR<\/strong><\/th><th><strong>GDATU<\/strong><\/th><th><strong>UKURS<\/strong><\/th><\/tr><tr><td>EURX<\/td><td>EUR<\/td><td>USD<\/td><td>79949781<\/td><td>1,23456-<\/td><\/tr><tr><td>EURX<\/td><td>EUR<\/td><td>USD<\/td><td>79949780<\/td><td>0,89012<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>2 points are noticeable immediately:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>The \u201cGDATU\u201d data field (date from which the exchange rate is valid) is obviously not a date. The \u201cTCURR\u201d table works with an inverted format as a 9\u2019s complement. The calculation is very simple and reads:<\/li><\/ol>\n\n\n\n<p>99999999 \u2013 (GDATU) = date in the format yyyymmdd \u2013 thus for the first entry in the above table 99999999 \u2013 79949781 = 20050218, which equates to 18\/02\/2005, and for the second entry in the table, 19\/02\/2005.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\"><li>The values in the \u201cUKURS\u201d data field (exchange rate) differ in format. The trailing \u201c-\u201d in the field \u201cUKURS\u201d indicates an indirect quotation, a missing \u201c-\u201d indicates a price-quoted exchange rate. Indirect quotation means that, for a local currency EURO and a business transaction in USD in the \u201cUKURS\u201d data field in the \u201cTCURR\u201d table, there is a value of \u201c1.23456-\u201d (1 EUR = 1.23456 USD). For a price quotation and a rate of 1 USD = 0.89012 EUR, it is exactly this value which is stored in the \u201cUKURS\u201d data field in the \u201cTCURR\u201d table. In indirect quotation, the corresponding entry would be \u201c1.12344-\u201c.<\/li><\/ol>\n\n\n\n<p>The following SQL statement compares the \u201cEKKO\u201d table with the \u201cTCURR\u201d table:<\/p>\n\n\n\n<p><code>SELECT EKKO.AEDAT, EKKO.EBELN, EKKO.WKURS, EKKO.WAERS, T001.WAERS, TCURR.UKURS,&nbsp;<\/code><br><code>99999999-TO_INTEGER(CONCAT(GDATU,'0')\/10) FROM EKKO&nbsp;<\/code><br><code>LEFT JOIN T001 ON (T001.MANDT = EKKO.MANDT AND T001.BUKRS=EKKO.BUKRS)&nbsp;<\/code><br><code>LEFT JOIN TCURR ON (T001.MANDT LIKE TCURR.MANDT AND T001.WAERS LIKE TCURR.TCURR AND EKKO.WAERS LIKE TCURR.FCURR)<\/code><br><code>WHERE&nbsp;<\/code><br><code>EKKO.WAERS NOT LIKE T001.WAERS AND KURST LIKE 'EURX' AND (99999999-EKKO.AEDAT)&lt;GDATU AND NOT EXISTS (SELECT * FROM TCURR T2 WHERE T2.MANDT=TCURR.MANDT and TCURR.FCURR=T2.FCURR and TCURR.KURST=T2.KURST AND (99999999-TO_INTEGER(CONCAT(T2.GDATU,'0')\/10))&lt;EKKO.AEDAT AND (99999999-TO_INTEGER(CONCAT(T2.GDATU,'0')\/10))&gt;(99999999-TO_INTEGER(CONCAT(TCURR.GDATU,'0')\/10))) AND EKKO.WKURS NOT LIKE TCURR.UKURS<\/code><br><code>ORDER BY EKKO.AEDAT DESC<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How is the query structured?<\/h3>\n\n\n\n<p>First, you define which fields are output with \u201cSELECT\u201d:<\/p>\n\n\n\n<p><code>SELECT EKKO.AEDAT, EKKO.EBELN, EKKO.WKURS, EKKO.WAERS, T001.WAERS AS T001_WAERS, TCURR.UKURS, 99999999-TO_INTEGER(CONCAT(GDATU,'0')\/10) AS TCURR_GDATU FROM EKKO<\/code><\/p>\n\n\n\n<p>The expression \u201c9999999999-TO_INTEGER(CONCAT(GDATU,\u20190\u2032)\/10)\u201d may seem somewhat cryptic here. The background to this is the conversion of the inverted date into a readable format yyyymmdd on a SAP HANA database as described above. The conversion of this field does not work properly with standard methods in SQL. As a trick, a \u201c0\u201d is appended to the value in the \u201cGDATU\u201d data field, and this value is then divided by 10.<\/p>\n\n\n\n<p>\u201cJOIN\u201d enriches the set of results with data from the company code table (T001) and the exchange rate table (TCURR).<\/p>\n\n\n\n<p><code>LEFT JOIN T001 ON (T001.MANDT = EKKO.MANDT AND T001.BUKRS=EKKO.BUKRS)<br>LEFT JOIN TCURR ON (T001.MANDT LIKE TCURR.MANDT AND T001.WAERS LIKE TCURR.TCURR AND EKKO.WAERS LIKE TCURR.FCURR)<\/code><\/p>\n\n\n\n<p>Specifically, the table \u201cT001\u201d and the company codes stored there as well as table \u201cTCURR\u201d are used to determine which exchange rates are to be used for purchase orders in a foreign currency.<\/p>\n\n\n\n<p>Finally, the \u201cWHERE\u201d clause focuses on transactions in a foreign currency (EKKO.WAERS NOT LIKE T001.WAERS). The rest of this clause ensures that only the exchange rate valid at the time of ordering is used as the comparison value.<\/p>\n\n\n\n<p>The result shows the purchase orders created for this blog post:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>AEDAT<\/th><th>EBELN<\/th><th>WKURS<\/th><th>WAERS<\/th><th>T001_WAERS<\/th><th>UKURS<\/th><th>TCURR_GDATU<\/th><\/tr><tr><td>20180831<\/td><td>4500022429<\/td><td>555,00000<\/td><td>USD<\/td><td>EUR<\/td><td>1,12145-<\/td><td>20150508<\/td><\/tr><tr><td>20180830<\/td><td>4500022428<\/td><td>333,00000<\/td><td>USD<\/td><td>EUR<\/td><td>1,12145-<\/td><td>20150508<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The result shows the relevant purchase order numbers (EBELN data field), the exchange rate entered manually in the purchase order (WKURS data field), the exchange rate stored in the system with the corresponding valid from date (UKURS and TCURR-GDATU fields) as well as the currency used in the purchase order (WAERS) and the local currency stored for the company code (T001_WAERS). It is noticeable that the exchange rate stored in the purchase order of 555.00000 or 333.00000 differs significantly from the standard exchange rate of 1.12145 specified in the system. In addition, exchange rates from 08\/05\/2015 (field TCURR_GDATU) are supposed to be used for orders placed on 30\/31 August 2018 (AEDAT data field). In short \u2013 there are 2 questions to be answered \u2013 why have the exchange rates stored in the system not been used and how has the process for maintaining exchange rates in the SAP system been set up?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why not let zap Audit do the hard work for you?<\/h2>\n\n\n\n<p>If this all sounds too technical for you: zap Audit already contains an indicator in beta status for the type of exchange rate cases described above. Why not try it out for yourself? For small company codes, zap Audit is free of charge and we will be happy to show you in advance how to obtain the analysis results you are looking for.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u201cTwo things can drive a person mad: jealousy and the study of exchange rates.\u201d Frank P\u00f6psel, German journalist (\u201cCapital\u201d) (Translated from the German) SAP remains very true to the spirit of Frank P\u00f6psel\u2019s words by surprising us with a particular scenario relating to exchange rates that we would like to present to you here today. [&hellip;]<\/p>\n","protected":false},"author":7,"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-11190","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>The madness of exchange rate fraud in SAP - 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=\"The madness of exchange rate fraud in SAP - zapliance\" \/>\n<meta property=\"og:description\" content=\"\u201cTwo things can drive a person mad: jealousy and the study of exchange rates.\u201d Frank P\u00f6psel, German journalist (\u201cCapital\u201d) (Translated from the German) SAP remains very true to the spirit of Frank P\u00f6psel\u2019s words by surprising us with a particular scenario relating to exchange rates that we would like to present to you here today. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-13T11:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:42:26+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=\"Christian Busch\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christian Busch\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 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\/the-madness-of-exchange-rate-fraud-in-sap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/\"},\"author\":{\"name\":\"Christian Busch\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/f8e151c2a2030ebedb2df38d0bf84746\"},\"headline\":\"The madness of exchange rate fraud in SAP\",\"datePublished\":\"2018-09-13T11:00:00+00:00\",\"dateModified\":\"2022-08-26T13:42:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/\"},\"wordCount\":1062,\"publisher\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#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\/the-madness-of-exchange-rate-fraud-in-sap\/\",\"url\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/\",\"name\":\"The madness of exchange rate fraud in SAP - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2018-09-13T11:00:00+00:00\",\"dateModified\":\"2022-08-26T13:42:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#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\/the-madness-of-exchange-rate-fraud-in-sap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/staging.zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The madness of exchange rate fraud in SAP\"}]},{\"@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\/f8e151c2a2030ebedb2df38d0bf84746\",\"name\":\"Christian Busch\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/avatar_user_7_1661960821-96x96.png\",\"contentUrl\":\"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/avatar_user_7_1661960821-96x96.png\",\"caption\":\"Christian Busch\"},\"description\":\"is head of commercial functions at e.kundenservice Netz GmbH.\",\"url\":\"https:\/\/staging.zapliance.com\/en\/blog\/author\/christian-busch\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The madness of exchange rate fraud in SAP - 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":"The madness of exchange rate fraud in SAP - zapliance","og_description":"\u201cTwo things can drive a person mad: jealousy and the study of exchange rates.\u201d Frank P\u00f6psel, German journalist (\u201cCapital\u201d) (Translated from the German) SAP remains very true to the spirit of Frank P\u00f6psel\u2019s words by surprising us with a particular scenario relating to exchange rates that we would like to present to you here today. [&hellip;]","og_url":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/","og_site_name":"zapliance","article_published_time":"2018-09-13T11:00:00+00:00","article_modified_time":"2022-08-26T13:42:26+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":"Christian Busch","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christian Busch","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#article","isPartOf":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/"},"author":{"name":"Christian Busch","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/f8e151c2a2030ebedb2df38d0bf84746"},"headline":"The madness of exchange rate fraud in SAP","datePublished":"2018-09-13T11:00:00+00:00","dateModified":"2022-08-26T13:42:26+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/"},"wordCount":1062,"publisher":{"@id":"https:\/\/staging.zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#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\/the-madness-of-exchange-rate-fraud-in-sap\/","url":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/","name":"The madness of exchange rate fraud in SAP - zapliance","isPartOf":{"@id":"https:\/\/staging.zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#primaryimage"},"image":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2018-09-13T11:00:00+00:00","dateModified":"2022-08-26T13:42:26+00:00","breadcrumb":{"@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.zapliance.com\/en\/blog\/the-madness-of-exchange-rate-fraud-in-sap\/#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\/the-madness-of-exchange-rate-fraud-in-sap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/staging.zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"The madness of exchange rate fraud in SAP"}]},{"@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\/f8e151c2a2030ebedb2df38d0bf84746","name":"Christian Busch","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.zapliance.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/avatar_user_7_1661960821-96x96.png","contentUrl":"https:\/\/staging.zapliance.com\/wp-content\/uploads\/2022\/08\/avatar_user_7_1661960821-96x96.png","caption":"Christian Busch"},"description":"is head of commercial functions at e.kundenservice Netz GmbH.","url":"https:\/\/staging.zapliance.com\/en\/blog\/author\/christian-busch\/"}]}},"views":4332,"_links":{"self":[{"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11190","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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/comments?post=11190"}],"version-history":[{"count":1,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11190\/revisions"}],"predecessor-version":[{"id":11191,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11190\/revisions\/11191"}],"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=11190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}