ABAPDATA_REF_TO_INCLUDE - DATA REF TO INCLUDE
RFUMSV00 - Advance Return for Tax on Sales/Purchases TXBHW - Original Tax Base Amount in Local CurrencyThis documentation is copyright by SAP AG.
Effect
Data object f is declared as reference variable withinABAP objects. cif is aclass or aninterface. Reference variables contain references (pointers) toobjects.
Referencevariables whose types are defined with reference to a class can contain references to objects of thisclass. Reference variables whose types are defined with reference to an intterface can contain references to objects whose class implements the interface.
Note
Objects, i.e.instances of classes, are only addressed with their reference variables. To create objects seeCREATE OBJECT.
Example
INTERFACE i1.
METHODS m1.
ENDINTERFACE.
CLASS c1 DEFINITION.
PUBLIC SECTION.
INTERFACES i1.
ENDCLASS.
CLASS c1 IMPLEMENTATION.
METHOD i1~m1.
...
ENDMETHOD.
ENDCLASS.
DATA: o1 TYPE REF TO c1,
o2 TYPE REF TO c1,
ir TYPE REF TO i1.
START-OF-SELECTION.
CREATE OBJECT o1.
o2 = o1.
ir = o1.
Additional help
rdisp/max_wprun_time - Maximum work process run time RFUMSV00 - Advance Return for Tax on Sales/Purchases
This documentation is copyright by SAP AG.
Length: 1986 Date: 20120522 Time: 044616 triton ( 79 ms )






