SAP Tutorials Blog


 


"Declaring data reference variables

DATA dref1 TYPE REF TO i.    "Complete type

DATA dref2 TYPE REF TO data. "Generic type


"In the following created anonymous data objects, no parameters are

"specified in the parentheses meaning the data objects retain their

"initial values.

dref1 = NEW #( ).

dref2 = NEW string( ).


"Such NEW expressions replace the older syntax CREATE DATA (however, in the 

"context of dynamic programming, using CREATE DATA is still required)

CREATE DATA dref1.

CREATE DATA dref2 TYPE string.


"Unlike above, the following examples specify values in the parentheses,

"this assigning single values.

dref1 = NEW #( 123 ).

dref2 = NEW string( `hallo` ).


Serkan AKKAVAK

Computer Engineer BSc

SAP Department Manager

Contact : serkurumsal@yandex.com