Many a times we come across a situation in which we need to alter the contents of an internal table to reach out to a desired outcome. I also fell into the same situation while creating a POC (Proof of Concept).
Currently I was working on a POC for SCI reporting tool automation. For a particular use case, I needed the internal table to be empty. Doing that manually was a cumbersome process as it has over 1000+ number of records. After some research on internet, I stumbled upon the following outcome : ” Use ABAP New Debugger Tools“.
The new ABAP debugger tools has many amazing functionalities and one of them is to play with the contents of internal table at the time of debugging.
To delete the contents of internal table while debugging, I followed the following steps:
Currently I was working on a POC for SCI reporting tool automation. For a particular use case, I needed the internal table to be empty. Doing that manually was a cumbersome process as it has over 1000+ number of records. After some research on internet, I stumbled upon the following outcome : ” Use ABAP New Debugger Tools“.
The new ABAP debugger tools has many amazing functionalities and one of them is to play with the contents of internal table at the time of debugging.
To delete the contents of internal table while debugging, I followed the following steps:
1. Load the target internal table into Variable section
Here LT_WORK is the target internal table for which I need to delete the entries.
No comments:
Post a Comment