Ruediger_Plantiko
Active Contributor
Member since ‎2008 Jul 27

User Statistics

  • 650 Posts
  • 47 Solutions
  • 16 Kudos given
  • 196 Kudos received

User Activity

I was exploring the new system class CL_ABAP_DIFF which detects differences between internal tables. According to the documentation, its return value is a diff table, to be understood as a sequence of instructions that have to be applied to the sourc...
Over the night, all the links to ABAP syntax docu topics that we had in our team wiki are obsolete, yielding a HTTP 404 on click. For some day, even the Google search results for certain topics pointed into Nirwana. The simple reason was that the ...
To do reflection in ABAP, we have the class family CL_ABAP_...DESCR. For example, we can get the informations about a class by creating a description object: data lo_obj type ref to cl_abap_objectdescr. call method cl_abap_objectdescr=>create_by_na...
The following ABAP report calls p_times times a function module which does nothing ('RFC_PING'), while being supervised by the coverage API (see subroutine measure_a_nop at the bottom of the report). The expected result would be that it reports `1...
From its description and its inline code comments, the function module SBUF_OBJ_RESET_OBJECT appears to be the right guy to delete shared buffer import/export areas. (I know, there is a built-in statement "delete from shared buffer", but I need an RF...