No Image

Field Catalog in SAP ALV

February 20, 2012 v 7

The field catalog is a table which contains information on the fields to be displayed on the ALV output.

No Image

ABAP Subroutine

February 14, 2012 v 9

Subroutines are procedures that we define in an ABAP program and can be called from any program. Subroutines are normally called internally, i.e. called from the same program in which it is defined. But it is also possible to call a subroutine from an external program.

No Image

What is SAP ALV?

January 29, 2012 v 5

ALV stands for ABAP List Viewer. ALV gives us a standard List format and user interface to all our ABAP reports. ALV is created by a set of standard function modules provided by SAP.

No Image

ABAP Include Program

January 11, 2012 v 0

Include programs allow you to use the same source code in different programs. They are mainly used for modularizing source code and have no parameter interface.

No Image

ABAP Macros

January 2, 2012 v 0

If we want to reuse the same set of statements more than once in a program, we can include them in a macro.

No Image

Modularization in ABAP

December 29, 2011 v 7

Modularization is breaking down a big program into smaller units, so that it is easy to maintain.