I found a very interesting post by Emanuel Klenner, about extraction of an internal table from ABAP debugger to VALUE #( ) statement, that can be used later in the program or unit test. This approach uses debugger scripts. I…
I am sharing here a code snippet, which is an example program showing how to display table data as ALV in ABAP. This is a very simple application showcasing three approaches to creating ALV: Using REUSE_ALV_GRID_DISPLAY function module Using CL_GUI_ALV_GRID…
To create a GIF animation from a set of images following command can be used: This command assumes that there are 40 images in the directory named: image_0000.tif, image_0001.tif …, image_0039.tif (trim filter allows to remove duplicated first and last…
Sometimes size of the document that is to be handed to user may be large. For example, this may be the case when some report result is saved in CSV or XML format. How to make the resulting file smaller…
Recently I was trying to get rid of a single letter at the end of a line in Adobe Forms, and move it to the next line. The text was displayed on the form using floating field and it was…
You may find yourself needing to process huge amount of database records, for example INSERT, UPDATE or DELETE millions of rows. You cannot perform all of those in one transaction as that may result in exceeding the size of the…
I found an interesting article on how to debug F110 tcode. It was useful when I was trying to find out why White List check for Poland was not being triggered (function module OVL_PL_F110_WHITE_LIST_CHECK, method CL_OVF_BP_CHECK=>VALIDATE_BP_PLWL). Keywords: Automatic payment run…