22 Function Modules with parameters examples

Опубликовано: 18 Июнь 2026
на канале: SAP Full Stack Custom Development
37
2

In SAP ABAP, Function Modules are reusable subroutines that encapsulate specific business logic and provide a formal interface for data exchange. Unlike local subroutines, they are stored in a central library and are available system-wide.

Core Components

Function Group: Every function module must belong to a function group, which acts as a container for logically related modules and allows them to share global data.

Interface: Defined by five main categories of parameters:
Import: Data passed to the module.
Export: Data returned from the module.
Changing: Data that is both passed in and modified.
Tables: Used for passing internal tables (passed by reference).
Exceptions: Handles error conditions, allowing the calling program to react to issues like division by zero or missing data

Types of Function Modules
Function modules are categorized by their "Processing Type":

Normal Function Module: Executed synchronously and immediately within the current system.

Remote-Enabled (RFC): Can be called from external SAP or non-SAP systems (e.g., Java or VB programs). All BAPIs (Business Application Programming Interfaces) are RFC-enabled function modules.

Update Function Module: Not executed immediately; it is scheduled to run when the program triggers a COMMIT WORK statement, ensuring database consistency.

Key Transactions
SE37 (Function Builder): The primary tool for creating, testing, and maintaining function modules.
SE80 (Object Navigator): Used to manage entire function groups and their associated objects.