{"id":908,"date":"2025-01-25T15:17:07","date_gmt":"2025-01-25T15:17:07","guid":{"rendered":"https:\/\/sapvimtraining.com\/?p=436"},"modified":"2025-01-25T15:17:07","modified_gmt":"2025-01-25T15:17:07","slug":"using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim","status":"publish","type":"post","link":"https:\/\/johannesauer.com\/de\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/","title":{"rendered":"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)"},"content":{"rendered":"\n<p>When analysing problems in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM), depending on the system architecture and authorisations, there are parts of the source code that are very difficult to access with the <strong>ABAP debugger<\/strong>. This is the case, for example, with data enrichments (e.g. logical modules) executed by a background user at the start of the process.<\/p>\n\n\n\n<p>A debug loop is an endless loop in the code which you can activate when required. The infinite loop allows you to find and debug the running code in the process monitor.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Adding a debug loop to your ABAP code<\/h2>\n\n\n\n<p>In order to be able to use a debug loop, it is first necessary for it to exist. This is the case in many parts of the product standard, but should not be forgotten in custom developments either. A debug loop can look like this, for example:<\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-highlight-hover\" data-code-block-pro-font-family=\"Code-Pro-Hack\" style=\"font-size:.875rem;font-family:Code-Pro-Hack,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-width:calc(2 * 0.6 * .875rem);--cbp-line-highlight-color:rgba(43, 150, 189, 0.2);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#fbeecb;color:#708891\">ABAP<\/span><span role=\"button\" tabindex=\"0\" data-code=\"DO.  \n\n  SELECT SINGLE value \n\u00a0 FROM \/opt\/cp_debug \n\u00a0 INTO @DATA(lv_debug) \n\u00a0 WHERE debugarea = 'Z_LOGIC_MODULE'.  \" keep text below 20 chars\n\u00a0 \u00a0 \n\u00a0 IF lv_debug IS INITIAL.  \n\u00a0   EXIT.  \n\u00a0 ENDIF. \n\u00a0 \u00a0  \nENDDO.  \" style=\"color:#657B83;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki solarized-light\" style=\"background-color: #FDF6E3\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #859900\">DO<\/span><span style=\"color: #657B83\">.  <\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #859900\">SELECT<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #859900\">SINGLE<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #859900\">value<\/span><span style=\"color: #657B83\"> <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0 <\/span><span style=\"color: #859900\">FROM<\/span><span style=\"color: #657B83\"> \/opt\/cp_debug <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0 <\/span><span style=\"color: #859900\">INTO<\/span><span style=\"color: #657B83\"> @<\/span><span style=\"color: #859900\">DATA<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #268BD2\">lv_debug<\/span><span style=\"color: #657B83\">) <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0 <\/span><span style=\"color: #859900\">WHERE<\/span><span style=\"color: #657B83\"> debugarea <\/span><span style=\"color: #859900\">=<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #2AA198\">'Z_LOGIC_MODULE'<\/span><span style=\"color: #657B83\">.  <\/span><span style=\"color: #93A1A1; font-style: italic\">\" keep text below 20 chars<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0 \u00a0 <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0<\/span><span style=\"color: #859900\"> IF<\/span><span style=\"color: #657B83\"> lv_debug <\/span><span style=\"color: #859900\">IS<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #859900\">INITIAL<\/span><span style=\"color: #657B83\">.  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0   <\/span><span style=\"color: #859900\">EXIT<\/span><span style=\"color: #657B83\">.  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0<\/span><span style=\"color: #859900\"> ENDIF<\/span><span style=\"color: #657B83\">. <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">\u00a0 \u00a0  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #859900\">ENDDO<\/span><span style=\"color: #657B83\">.  <\/span><\/span><\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading is-style-default\">Activating a debug loop using the ABAP Editor SE38<\/h2>\n\n\n\n<p>The table <strong>\/opt\/cp_debug<\/strong> has some advantages over self-built tables. It is used in the product standard and the loop can be activated and deactivated with the <strong>ABAP Editor <\/strong>(<strong>SE38<\/strong>) using the program <strong>\/OPT\/VIM_DEBUG<\/strong>. <\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded wp-duotone-unset-1\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"841\" src=\"https:\/\/sapvimtraining.com\/wp-content\/uploads\/2025\/01\/image-17-1024x841.png\" alt=\"\" class=\"wp-image-448\" style=\"width:446px;height:auto\" srcset=\"https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-17-1024x841.png 1024w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-17-300x247.png 300w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-17-768x631.png 768w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-17.png 1088w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized is-style-rounded\"><img loading=\"lazy\" decoding=\"async\" width=\"1004\" height=\"475\" src=\"https:\/\/sapvimtraining.com\/wp-content\/uploads\/2025\/01\/image-18.png\" alt=\"\" class=\"wp-image-449\" style=\"width:473px;height:auto\" srcset=\"https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-18.png 1004w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-18-300x142.png 300w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-18-768x363.png 768w\" sizes=\"auto, (max-width: 1004px) 100vw, 1004px\" \/><\/figure>\n\n\n\n<p>If a debugging area is activated, the system remains in an infinite loop until it is deactivated again or until the infinite loop is exited manually in the debugger.<\/p>\n\n\n\n<p>But be careful, the debug loop runs for all users on the system, so this tool should only be used with caution. In the production system only in absolutely exceptional cases and only for a short time in consultation with the system supervisor. <\/p>\n\n\n\n<p>Some consultants even comment out the coding for debug loops before productive operation, but I find that the possibility of debugging in the P system can be a great advantage for tracking down tricky errors.<\/p>\n\n\n\n<p><strong>Tip<\/strong>: As you often spend a long time in the code when debugging, I suggest that the <strong>debugging loop is always exited via \/OPT\/VIM_DEBUG<\/strong>. This way you cannot forget to deactivate the loop.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Starting the debugger in Work process overview (SM50)<\/h2>\n\n\n\n<p>If your debug loop is active, you are ready to go: Provoke the system to run the loop, for example by processing a new document.<\/p>\n\n\n\n<p>As soon as the corresponding line in the source code is run through, the process stops and we have the opportunity to jump to the debugger, for which we use the transaction code SM50. <\/p>\n\n\n\n<p>To make it easy to find our process, we switch to the <strong>Active Work Processes<\/strong> view.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"482\" src=\"https:\/\/sapvimtraining.com\/wp-content\/uploads\/2025\/01\/image-24-1024x482.png\" alt=\"\" class=\"wp-image-459\" srcset=\"https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-24-1024x482.png 1024w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-24-300x141.png 300w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-24-768x362.png 768w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-24-1536x723.png 1536w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-24.png 1716w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>If you cannot find your process, have a look at the System-Wide List. The process you are looking for may be running on a different application server.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"351\" src=\"https:\/\/sapvimtraining.com\/wp-content\/uploads\/2025\/01\/image-23-1024x351.png\" alt=\"\" class=\"wp-image-458\" style=\"width:467px;height:auto\" srcset=\"https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-23-1024x351.png 1024w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-23-300x103.png 300w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-23-768x263.png 768w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-23.png 1126w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Now we can select our process and start it via <strong>Administration<\/strong> > <strong>Program<\/strong> > <strong>Debugging<\/strong> in the ABAP Debugger and eliminate the error.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"402\" src=\"https:\/\/sapvimtraining.com\/wp-content\/uploads\/2025\/01\/image-21-1024x402.png\" alt=\"\" class=\"wp-image-456\" srcset=\"https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-21-1024x402.png 1024w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-21-300x118.png 300w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-21-768x301.png 768w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-21-1536x603.png 1536w, https:\/\/johannesauer.com\/wp-content\/uploads\/2025\/01\/image-21-2048x804.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Do you have any tips or best practices for dealing with debug loops in ABAP? Let us know in the comments!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When analysing problems in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM), depending on the system architecture and authorisations, there are parts of the source code that are very difficult to access with the ABAP debugger. This is the case, for example, with data enrichments (e.g. logical modules) executed by a background user at [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":193,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16,13],"tags":[18,19,20,14],"class_list":["post-908","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debugging","category-sap-vim","tag-abap","tag-debug-loop","tag-debugging","tag-sap-vim"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)<\/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:\/\/johannesauer.com\/de\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/\"},\"author\":{\"name\":\"Johannes Auer\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#\\\/schema\\\/person\\\/5be8c8acac2d2546979a66edb36355f7\"},\"headline\":\"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)\",\"datePublished\":\"2025-01-25T15:17:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/\"},\"wordCount\":507,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#primaryimage\"},\"thumbnailUrl\":\"\",\"keywords\":[\"ABAP\",\"Debug loop\",\"Debugging\",\"SAP VIM\"],\"articleSection\":[\"Debugging\",\"SAP VIM\"],\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/\",\"url\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/\",\"name\":\"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2025-01-25T15:17:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/sap-vim\\\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/johannesauer.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#website\",\"url\":\"https:\\\/\\\/johannesauer.com\\\/\",\"name\":\"Johannes Auer\",\"description\":\"SAP VIM Consulting\",\"publisher\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/johannesauer.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#organization\",\"name\":\"Johannes Auer\",\"url\":\"https:\\\/\\\/johannesauer.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/johannesauer.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/Logo-2026-space-marble-picture-scaled.png\",\"contentUrl\":\"https:\\\/\\\/johannesauer.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/Logo-2026-space-marble-picture-scaled.png\",\"width\":2560,\"height\":2560,\"caption\":\"Johannes Auer\"},\"image\":{\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/auer\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/johannesauer.com\\\/#\\\/schema\\\/person\\\/5be8c8acac2d2546979a66edb36355f7\",\"name\":\"Johannes Auer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g\",\"caption\":\"Johannes Auer\"},\"sameAs\":[\"https:\\\/\\\/johannesauer.com\"],\"url\":\"https:\\\/\\\/johannesauer.com\\\/de\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)","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:\/\/johannesauer.com\/de\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#article","isPartOf":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/"},"author":{"name":"Johannes Auer","@id":"https:\/\/johannesauer.com\/#\/schema\/person\/5be8c8acac2d2546979a66edb36355f7"},"headline":"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)","datePublished":"2025-01-25T15:17:07+00:00","mainEntityOfPage":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/"},"wordCount":507,"commentCount":0,"publisher":{"@id":"https:\/\/johannesauer.com\/#organization"},"image":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#primaryimage"},"thumbnailUrl":"","keywords":["ABAP","Debug loop","Debugging","SAP VIM"],"articleSection":["Debugging","SAP VIM"],"inLanguage":"de-DE","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/","url":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/","name":"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)","isPartOf":{"@id":"https:\/\/johannesauer.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#primaryimage"},"image":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#primaryimage"},"thumbnailUrl":"","datePublished":"2025-01-25T15:17:07+00:00","breadcrumb":{"@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/"]}]},{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/johannesauer.com\/en\/sap-vim\/using-abap-debug-loops-in-opentext-vendor-invoice-management-for-sap-solutions-sap-vim\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/johannesauer.com\/en\/"},{"@type":"ListItem","position":2,"name":"Using ABAP Debug Loops in OpenText Vendor Invoice Management for SAP Solutions (SAP VIM)"}]},{"@type":"WebSite","@id":"https:\/\/johannesauer.com\/#website","url":"https:\/\/johannesauer.com\/","name":"Johannes Auer","description":"SAP VIM Consulting","publisher":{"@id":"https:\/\/johannesauer.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/johannesauer.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de-DE"},{"@type":"Organization","@id":"https:\/\/johannesauer.com\/#organization","name":"Johannes Auer","url":"https:\/\/johannesauer.com\/","logo":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/johannesauer.com\/#\/schema\/logo\/image\/","url":"https:\/\/johannesauer.com\/wp-content\/uploads\/2026\/01\/Logo-2026-space-marble-picture-scaled.png","contentUrl":"https:\/\/johannesauer.com\/wp-content\/uploads\/2026\/01\/Logo-2026-space-marble-picture-scaled.png","width":2560,"height":2560,"caption":"Johannes Auer"},"image":{"@id":"https:\/\/johannesauer.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/in\/auer\/"]},{"@type":"Person","@id":"https:\/\/johannesauer.com\/#\/schema\/person\/5be8c8acac2d2546979a66edb36355f7","name":"Johannes Auer","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/secure.gravatar.com\/avatar\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/60aef692d1ef612aae869660d5783f53d98ea7fbd0396a3dc70f028c5294135c?s=96&d=mm&r=g","caption":"Johannes Auer"},"sameAs":["https:\/\/johannesauer.com"],"url":"https:\/\/johannesauer.com\/de\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/posts\/908","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/comments?post=908"}],"version-history":[{"count":0,"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/posts\/908\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/johannesauer.com\/de\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/media?parent=908"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/categories?post=908"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/johannesauer.com\/de\/wp-json\/wp\/v2\/tags?post=908"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}