Friday, February 10, 2012

ABAP - Using Macros and subroutines

*&---------------------------------------------------------------------*
*& Report  YSAP_MACRO1
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

REPORT  ysap_macro.


DEFINE MACRO1.
    WRITE :/'SUBroutine' color 6.
  ENDFORM.
END-OF-DEFINITION.

perform test1.
FORM TEST1.
MACRO1.


No comments:

Post a Comment