SAP EXIT_SAPLANLG_003 Function Module for Change Posting Amount









EXIT_SAPLANLG_003 is a standard exit saplanlg 003 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Change Posting Amount processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for exit saplanlg 003 FM, simply by entering the name EXIT_SAPLANLG_003 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XINT
Program Name: SAPLXINT
Main Program:
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLANLG_003 pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'EXIT_SAPLANLG_003'"Change Posting Amount
EXPORTING
I_ANTS = "
I_ANBZ = "

TABLES
T_ANEP = "
M_ANEP = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
AA_DEPR_KEY_IS_UOP?
AA_DEP_KEY_IS_UOP?
AFABER_SHOW_AW01
AM_ABUB_FILL_FROM_ANEP_ANEA
AM_ABUZ_REVERSE_POSTING_KEYS
AM_AC_DOCUMENT_CREATE
AM_ADD_NR_RANGE_FIAA_BELNR
AM_ADITIONAL_ACCOUTING_GET
AM_AFA_AUF_NACHAKTIVIERUNG
AM_ANEP_ANEA_ERGAENZEN
AM_ANEP_ANEA_TAKE_OVER
AM_ASSET_READ_FOR_POSTING
AM_BWASL_CHECK_ON_ASSET
AM_BWA_GET_AND_CHECK
AM_BZDAT_CHECK_ON_ASSET
AM_CALL_EXIT_CHANGE_BETRAG
AM_CALL_EXIT_CHANGE_GEGENKONTO
AM_CALL_EXIT_RUECKZAHLUNGSPROZ
AM_CATT_AB01
AM_CHECK_INVESTPROFIL
AM_DOCUMENT_CREATION_PREPARE
AM_F4HILFE_BWASL
AM_FI_BELEGNUMMER_AUSGEBEN
AM_GET_DATA_FROM_OLD_KERNAL
AM_GSBER_CHECK
AM_LGJAN_GET
AM_NUMMERNINTERVALL_ANLEGEN
AM_POPUP_BKONT_AB01
AM_READ_TEXT_ON_DOMAIN_VALUE
AM_REPORT_SELECT
AM_RWIN_CALL
AM_SV_GET_TABNAMES
AM_US_ASSET_ITEMS_CREATE
AM_US_ASSET_ITEMS_POST
AM_US_CONTROL_FM
AM_US_TABLES_RESET
AM_XANBZ_FILL_ON_REVERSAL
ANLGR_READ_AND_CHECK
INSURANCE_VALUE_CALCULATE
JV_AM_ITEMS_CLEAR
JV_AM_ITEMS_RESTORE
JV_AM_ITEMS_SAVE
RA_ASSET_DEQUEUE
RA_ASSET_ENQUEUE
RA_POPUP_SHOW_SUBNUMBERS
TABLE_SCROLL
TEXT_EDIT
TEXT_READ
VIEW_SELECT
VIRTUAL_DEP_AREA_CALC

IMPORTING Parameters details for EXIT_SAPLANLG_003

I_ANTS -

Data type: ANTS
Optional: No
Call by Reference: No ( called with pass by value option)

I_ANBZ -

Data type: ANBZ
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for EXIT_SAPLANLG_003

T_ANEP -

Data type: ANEP
Optional: No
Call by Reference: No ( called with pass by value option)

M_ANEP -

Data type: ANEP
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for EXIT_SAPLANLG_003 Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_i_ants  TYPE ANTS, "   
lt_t_anep  TYPE STANDARD TABLE OF ANEP, "   
lv_i_anbz  TYPE ANBZ, "   
lt_m_anep  TYPE STANDARD TABLE OF ANEP. "   

  CALL FUNCTION 'EXIT_SAPLANLG_003'  "Change Posting Amount
    EXPORTING
         I_ANTS = lv_i_ants
         I_ANBZ = lv_i_anbz
    TABLES
         T_ANEP = lt_t_anep
         M_ANEP = lt_m_anep
. " EXIT_SAPLANLG_003




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLANLG_003

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!