SAP EXIT_SAPLFMCH_003 Function Module for Change of Account Assignment, Reject Reassignment









EXIT_SAPLFMCH_003 is a standard exit saplfmch 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 of Account Assignment, Reject Reassignment 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 saplfmch 003 FM, simply by entering the name EXIT_SAPLFMCH_003 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLFMCH_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_SAPLFMCH_003'"Change of Account Assignment, Reject Reassignment
IMPORTING
E_REJECT = "= 'X'. Reassignment Rejected

TABLES
C_T_FMCHA1 = "Contains the Current Account Assignments
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
FM_CHAA_LIST_TOP_PREPARE
FM_CHANGE_AA
FM_CHANGE_AA_CHECK
FM_CHANGE_AA_CHECK_INDEXES_CO
FM_CHANGE_AA_DEFAULTS
FM_CHANGE_AA_DELTA_ITEMS_GET
FM_CHANGE_AA_DOCEX
FM_CHANGE_AA_DOCEX_ENQUEUE_FI
FM_CHANGE_AA_DOCEX_ENQUEUE_FR
FM_CHANGE_AA_DOCEX_ENQUEUE_PO
FM_CHANGE_AA_DOCEX_ENQUEUE_PP
FM_CHANGE_AA_DOCEX_ENQUEUE_PR
FM_CHANGE_AA_DOCEX_ENQUEUE_TR
FM_CHANGE_AA_DOCEX_FAGL
FM_CHANGE_AA_DOCEX_FI
FM_CHANGE_AA_DOCEX_FR
FM_CHANGE_AA_DOCEX_FR_COM_PLAN
FM_CHANGE_AA_DOCEX_HR
FM_CHANGE_AA_DOCEX_OI
FM_CHANGE_AA_DOCEX_PO
FM_CHANGE_AA_DOCEX_PP
FM_CHANGE_AA_DOCEX_PR
FM_CHANGE_AA_DOCEX_SRM_CHECK
FM_CHANGE_AA_DOCFM
FM_CHANGE_AA_DOCFM_AI
FM_CHANGE_AA_DOCFM_FI
FM_CHANGE_AA_DOCFM_OI
FM_CHANGE_AA_DOCFM_READ
FM_CHANGE_AA_DOCFM_READ_CHAIN
FM_CHANGE_AA_DOCFM_READ_CO
FM_CHANGE_AA_ERRORS_DISPLAY
FM_CHANGE_AA_FILL_FMZUCH
FM_CHANGE_AA_FMCHA1_CHECK
FM_CHANGE_AA_FM_FI_TO_IT_CONV
FM_CHANGE_AA_GET_DEPENDENCIES
FM_CHANGE_AA_HANA_DBCON_GET
FM_CHANGE_AA_P
FM_CHANGE_AA_PLAN_CHECK_LOCK
FM_CHANGE_AA_READ_FAGL_SPLINFO
FM_CHANGE_AA_REAS_FAGL_SPLINFO
FM_CHANGE_AA_REAS_INCOME_BSEG
FM_CHANGE_AA_REAS_INCOME_KBLP
FM_CHANGE_AA_SELECTION_CHECK
FM_CHANGE_AA_SUBST
FM_CHANGE_AA_TABCO_READ
FM_CHANGE_AA_TABCO_WRITE
FM_CHANGE_AA_TABWO_ACCOUNT_GET
FM_CHANGE_AA_TABWO_DELETE
FM_CHANGE_AA_TABWO_DISPLAY
FM_CHANGE_AA_TABWO_FILL
FM_CHANGE_AA_TABWO_HEADER
FM_CHANGE_AA_TABWO_READ
FM_CHANGE_AA_TABWO_WRITE

EXPORTING Parameters details for EXIT_SAPLFMCH_003

E_REJECT - = 'X'. Reassignment Rejected

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

TABLES Parameters details for EXIT_SAPLFMCH_003

C_T_FMCHA1 - Contains the Current Account Assignments

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

Copy and paste ABAP code example for EXIT_SAPLFMCH_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_e_reject  TYPE C, "   
lt_c_t_fmcha1  TYPE STANDARD TABLE OF FMCHA1. "   

  CALL FUNCTION 'EXIT_SAPLFMCH_003'  "Change of Account Assignment, Reject Reassignment
    IMPORTING
         E_REJECT = lv_e_reject
    TABLES
         C_T_FMCHA1 = lt_c_t_fmcha1
. " EXIT_SAPLFMCH_003




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLFMCH_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!