{"id":11216,"date":"2018-05-24T13:00:00","date_gmt":"2018-05-24T13:00:00","guid":{"rendered":"https:\/\/zapliance.com\/?p=11216"},"modified":"2022-08-26T13:46:57","modified_gmt":"2022-08-26T13:46:57","slug":"are-your-receivables-in-the-right-place-in-the-balance-sheet","status":"publish","type":"post","link":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/","title":{"rendered":"Are your receivables in the right place in the balance sheet?"},"content":{"rendered":"\n<p>Entering business transactions in the correct accounts is one of the basic requirements for proper accounting. In today\u2019s blog post, we will therefore consider the correct way of entering receivables in SAP. I will show you how you can check in SAP whether your receivables accounts contain similar business transactions or whether postings are being made to receivables accounts in an unsystematic way which can be a cause of quite some irritation. Because if receivables accounts are used in an incorrect way, in the worst case scenario, this can lead to misstatements on the balance sheet. And that\u2019s always something auditors should be on the lookout for!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How are receivables accounts structured?<\/h2>\n\n\n\n<p>If you take a look at the usual charts of accounts, you will often find names of receivables accounts such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Domestic accounts receivable<\/li><li>Receivables from foreign customers<\/li><li>Receivables from affiliated companies<\/li><\/ul>\n\n\n\n<p>These examples show what the structuring features for receivables accounts are: namely domestic\/international procurement and intercompany\/associated group companies. If you think about it a little more, you can boil it down to the following set of characteristics, which are of relevance for the structuring of receivables accounts:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Customer located in national territory (YES\/NO)<\/li><li>Debtor is based in the EU (YES\/NO)<\/li><li>Customer is an affiliated company (YES\/NO)<\/li><li>Customer is a private person (YES\/NO)<\/li><\/ul>\n\n\n\n<p>Looking at these characteristics, you would expect it to be possible to clearly define the status of each receivables account with regard to each of these characteristics.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How do I find out in SAP whether the business transactions on my receivables accounts are homogeneous?<\/h2>\n\n\n\n<p>In what follows, I will explain how to put together an SQL query that shows how many line items with which characteristics were posted to the receivables accounts for each receivables account used. To do this, use the \u201cDBACOCKPIT\u201d transaction in SAP and navigate to the SQL Editor by choosing Diagnostics.<\/p>\n\n\n\n<p>For each of the characteristics 1-4, the SQL query shows if the postings on the account apply to the respective characteristic:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>1<\/td><td><code>SELECT HKONT ACCOUNT ,<br>SKAT.TXT50 ACCOUNT_TITLE, KOART,<br>BSEG.GJAHR, BSEG.MANDT, BSEG.BUKRS,<br>CASE WHEN BSEG.VBUND='' THEN 'NO' ELSE 'YES' END INTERCOMPANY,<br>CASE WHEN T005.XEGLD='X' THEN 'YES' ELSE 'NO' END EU,<br>CASE WHEN T001.LAND1=KNA1.LAND1 THEN 'YES'ELSE 'NO' END INLAND,<br>CASE WHEN KNA1.STKZN='X' THEN 'YES' ELSE 'NO'END PERSON,<br>COUNT (*) ENTRIES<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>First, we define the necessary fields for the final output of the SQL query as usual. In addition to the account number (ACCOUNT), the account description (ACCOUNT_TITLE) and some standard output, such as the client (MANDT), the company code (BUKRS) and the fiscal year (GJAHR), there are various CASE WHEN expressions. These only replace the respective values of the fields in the result, so that the result is easier to read.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>2<\/td><td>FROM BSEG<br>LEFT JOIN T001 ON (BSEG.MANDT=T001.MANDT AND BSEG.BUKRS=T001.BUKRS)<br>LEFT JOIN SKAT ON (BSEG.MANDT=SKAT.MANDT AND T001.KTOPL=SKAT.KTOPL AND BSEG.HKONT=SKAT.SAKNR AND SKAT.SPRAS=\u2019D\u2019)<br>LEFT JOIN KNA1 ON (BSEG.MANDT=KNA1.MANDT AND BSEG.KUNNR=KNA1.KUNNR)<br>LEFT JOIN T005 ON (KNA1.MANDT=T005.MANDT AND KNA1.LAND1=T005.LAND1)<br>WHERE KOART=\u2019D\u2019<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The tables required for the analysis are then linked together using a LEFT JOIN to access the individual fields of the tables (T001, SKAT, KNA1, T005). After that, we limit ourselves to customers (KOART=\u2019D\u2019), since these are to be receivables.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>3<\/td><td>GROUP BY HKONT, KOART, BSEG.MANDT, BSEG.BUKRS, BSEG.GJAHR<br>CASE WHEN BSEG.VBUND=\u201d THEN \u2018NO\u2019 ELSE \u2018YES\u2019 END,<br>CASE WHEN T005.XEGLD=\u2019X\u2019 THEN \u2018YES\u2019 ELSE \u2018NO\u2019 END ,<br>CASE WHEN T001.LAND1=KNA1.LAND1 THEN \u2018YES\u2019 ELSE \u2018NO\u2019 END,<br>CASE WHEN KNA1.STKZN=\u2019X\u2019 THEN \u2018YES\u2019 ELSE \u2018NO\u2019 END,<br>SKAT.TXT50<br>ORDER BY HKONT,<br>COUNT(*) DESC<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Finally, the results are grouped together, where all values are the same. These groupings are then sorted by account number (ORDER BY HKONT). For the same account number, different specifications and different numbers of documents, the system also sorts in descending order by the number of documents (COUNT(*) DESC).<\/p>\n\n\n\n<p>The complete SQL query then looks like this:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>4<\/td><td><code>SELECT HKONT ACCOUNT,<br>SKAT.TXT50 ACCOUNT_TITLE,<br>KOART, BSEG.GJAHR,<br>BSEG.MANDT,<br>BSEG.BUKRS,<br>CASE WHEN BSEG.VBUND='' THEN 'NO' ELSE 'YES' END INTERCOMPANY,<br>CASE WHEN T005.XEGLD='X' THEN 'YES'ELSE 'NO' END EU,<br>CASE WHEN T001.LAND1=KNA1.LAND1 THEN 'YES'ELSE 'NO' END INLAND,<br>CASE WHEN KNA1.STKZN='X'THEN 'YES'ELSE 'NO'END PERSON,<br>COUNT (*) ENTRIES<br><br>FROM BSEG LEFT JOIN T001 ON (BSEG.MANDT=T001.MANDT AND BSEG.BUKRS=T001.BUKRS)<br>LEFT JOIN SKAT ON (BSEG.MANDT=SKAT.MANDT AND T001.KTOPL=SKAT.KTOPL AND BSEG.HKONT=SKAT.SAKNR AND SKAT.SPRAS='D')<br>LEFT JOIN KNA1 ON (BSEG.MANDT=KNA1.MANDT AND BSEG.KUNNR=KNA1.KUNNR)<br>LEFT JOIN T005 ON (KNA1.MANDT=T005.MANDT AND KNA1.LAND1=T005.LAND1)<br><br>WHERE KOART='D'<br>GROUP BY HKONT,<br>KOART,<br>BSEG.MANDT,<br>BSEG.BUKRS,<br>BSEG.GJAHR,<br>CASE WHEN BSEG.VBUND='' THEN 'NO' ELSE 'YES' END ,<br>CASE WHEN T005.XEGLD='X' THEN 'YES' ELSE 'NO' END ,<br>CASE WHEN T001.LAND1=KNA1.LAND1 THEN 'YES' ELSE 'NO' END,<br>CASE WHEN KNA1.STKZN='X' THEN 'YES' ELSE 'NO' END,<br>SKAT.TXT50<br>ORDER BY HKONT, COUNT(*) DESC<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The SQL query returns at least one result for each receivables account used. If several entries for a receivables account exist, this means that characteristics 1-4 of the postings to the receivables account are not clearly defined in all cases. It could then be the case that the receivables account was used for non-uniform business transactions.<\/p>\n\n\n\n<p>An example of a possible result can be found in the following table:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>ACCOUNT<\/th><th>ACCOUNT_TITLE<\/th><th>KOART<\/th><th>INTER-<br>COMPANY<\/th><th>EU<\/th><th>INLAND<\/th><th>PERSON<\/th><th>ENTRIES<\/th><\/tr><tr><td>140000<\/td><td>Trade Receivables \u2013 domestic<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>NO<\/td><td>685<\/td><\/tr><tr><td>140000<\/td><td>Trade Receivables \u2013 domestic<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>YES<\/td><td>327<\/td><\/tr><tr><td>141000<\/td><td>Trade Receivable \u2013 foreign<\/td><td>D<\/td><td>NO<\/td><td>NO<\/td><td>NO<\/td><td>NO<\/td><td>10<\/td><\/tr><tr><td>144006<\/td><td>Receivables CC 2000<\/td><td>D<\/td><td>YES<\/td><td>YES<\/td><td>NO<\/td><td>NO<\/td><td>2<\/td><\/tr><tr><td>196900<\/td><td>IS-RE Advance payment receivable \u2013 operating costs<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>YES<\/td><td>360<\/td><\/tr><tr><td>196910<\/td><td>IS-RE Advance payment \u2013 operating costs<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>YES<\/td><td>224<\/td><\/tr><tr><td>196920<\/td><td>IS-RE Advance payment \u2013 sales-based rent<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>YES<\/td><td>13<\/td><\/tr><tr><td>196930<\/td><td>IS-RE Rent desposit<\/td><td>D<\/td><td>NO<\/td><td>YES<\/td><td>YES<\/td><td>YES<\/td><td>3<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You can see that all receivables accounts only occur once, except for account 140000 \u201cDomestic receivables\u201d, which occurs twice. You should look at all accounts that occur more than once. In the case of account 140000, you can see that receivables from business customers and private customers were recorded there. In such a case it would be worth asking whether this is actually an instance of unsystematic posting or whether it is a matter of the characteristic actually being different in this case.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Too complicated?<\/h2>\n\n\n\n<p>We have already integrated an evaluation for checking receivables accounts in zap Audit. So if you need to run an automatic check on your data, just give zap Audit a try. zap Audit is free for smaller amount of company codes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Entering business transactions in the correct accounts is one of the basic requirements for proper accounting. In today\u2019s blog post, we will therefore consider the correct way of entering receivables in SAP. I will show you how you can check in SAP whether your receivables accounts contain similar business transactions or whether postings are being [&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-11216","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>Are your receivables in the right place in the balance sheet? - 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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Are your receivables in the right place in the balance sheet? - zapliance\" \/>\n<meta property=\"og:description\" content=\"Entering business transactions in the correct accounts is one of the basic requirements for proper accounting. In today\u2019s blog post, we will therefore consider the correct way of entering receivables in SAP. I will show you how you can check in SAP whether your receivables accounts contain similar business transactions or whether postings are being [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\" \/>\n<meta property=\"og:site_name\" content=\"zapliance\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-24T13:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-26T13:46: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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\"},\"author\":{\"name\":\"Nick Gehrke\",\"@id\":\"https:\/\/zapliance.com\/en\/#\/schema\/person\/ef4d227360d4b66b84aa95cb72c12f5a\"},\"headline\":\"Are your receivables in the right place in the balance sheet?\",\"datePublished\":\"2018-05-24T13:00:00+00:00\",\"dateModified\":\"2022-08-26T13:46:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\"},\"wordCount\":914,\"publisher\":{\"@id\":\"https:\/\/zapliance.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\",\"url\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\",\"name\":\"Are your receivables in the right place in the balance sheet? - zapliance\",\"isPartOf\":{\"@id\":\"https:\/\/zapliance.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png\",\"datePublished\":\"2018-05-24T13:00:00+00:00\",\"dateModified\":\"2022-08-26T13:46:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/zapliance.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Are your receivables in the right place in the balance sheet?\"}]},{\"@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":"Are your receivables in the right place in the balance sheet? - 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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/","og_locale":"en_US","og_type":"article","og_title":"Are your receivables in the right place in the balance sheet? - zapliance","og_description":"Entering business transactions in the correct accounts is one of the basic requirements for proper accounting. In today\u2019s blog post, we will therefore consider the correct way of entering receivables in SAP. I will show you how you can check in SAP whether your receivables accounts contain similar business transactions or whether postings are being [&hellip;]","og_url":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/","og_site_name":"zapliance","article_published_time":"2018-05-24T13:00:00+00:00","article_modified_time":"2022-08-26T13:46: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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#article","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/"},"author":{"name":"Nick Gehrke","@id":"https:\/\/zapliance.com\/en\/#\/schema\/person\/ef4d227360d4b66b84aa95cb72c12f5a"},"headline":"Are your receivables in the right place in the balance sheet?","datePublished":"2018-05-24T13:00:00+00:00","dateModified":"2022-08-26T13:46:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/"},"wordCount":914,"publisher":{"@id":"https:\/\/zapliance.com\/en\/#organization"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/","url":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/","name":"Are your receivables in the right place in the balance sheet? - zapliance","isPartOf":{"@id":"https:\/\/zapliance.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#primaryimage"},"image":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#primaryimage"},"thumbnailUrl":"https:\/\/zapliance.com\/wp-content\/uploads\/2022\/08\/Blog-Dummy.png","datePublished":"2018-05-24T13:00:00+00:00","dateModified":"2022-08-26T13:46:57+00:00","breadcrumb":{"@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zapliance.com\/en\/blog\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#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\/are-your-receivables-in-the-right-place-in-the-balance-sheet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/zapliance.com\/en\/"},{"@type":"ListItem","position":2,"name":"Are your receivables in the right place in the balance sheet?"}]},{"@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":1616,"_links":{"self":[{"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11216","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=11216"}],"version-history":[{"count":1,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11216\/revisions"}],"predecessor-version":[{"id":11217,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/posts\/11216\/revisions\/11217"}],"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=11216"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/categories?post=11216"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zapliance.com\/en\/wp-json\/wp\/v2\/tags?post=11216"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}