Bringing this thread back to life My 2 cents, using the following (purely demo) snippet for what is described below.REPORT zdbg_demo.
CLASS c2 DEFINITION DEFERRED.
CLASS c1 DEFINITION.
PUBLIC SECTION.
DATA mo2 TYPE REF TO c2.
ENDCLASS.
CLASS...
Note: Quick assist supports explicit declaration only for local scope (within method / form / FM ). If you try the same in simplistic, non-modularized ordinary program (i.e. declaring the variable in global scope), the option of explicit declaration...
Just adding:you can also avoid the literals at all, using the constants of class CL_ABAP_FORMAT: DATA(current_time) = sy-uzeit.
WRITE:/ |Time: { current_time }|.
WRITE:/ |Time (User format): { current_time TIME = (cl_abap_format=>t_...
Hi Thomas,a bit off-topic, but still search-related ? Any idea how to find all occurrences of certain string within whole function group or module pool, i.e. in compound source code trees comprising includes? Even ADT’s improved ABAP Source Search (C...