SAP FCML0_GET_EXUPD Function Module for









FCML0_GET_EXUPD is a standard fcml0 get exupd SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fcml0 get exupd FM, simply by entering the name FCML0_GET_EXUPD into the relevant SAP transaction such as SE37 or SE38.

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



Function FCML0_GET_EXUPD 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 'FCML0_GET_EXUPD'"
EXPORTING
* I_AWTYP = "Reference Transaction
* I_GLVOR = "
* I_AFABE = "Real Depreciation Area
* I_BUKRS = "Company Code
* I_ACC_PRINCIPLE = "Accounting Principle
* I_LDGRP = "
* I_HKONT = "
* I_BUDAT = "

IMPORTING
ET_EXUPD = "

EXCEPTIONS
NOT_RELEVANT = 1 ERROR_IN_CONFIGURATION = 2
.



IMPORTING Parameters details for FCML0_GET_EXUPD

I_AWTYP - Reference Transaction

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

I_GLVOR -

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

I_AFABE - Real Depreciation Area

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

I_BUKRS - Company Code

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

I_ACC_PRINCIPLE - Accounting Principle

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

I_LDGRP -

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

I_HKONT -

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

I_BUDAT -

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

EXPORTING Parameters details for FCML0_GET_EXUPD

ET_EXUPD -

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

EXCEPTIONS details

NOT_RELEVANT -

Data type:
Optional: No
Call by Reference: Yes

ERROR_IN_CONFIGURATION -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FCML0_GET_EXUPD 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_awtyp  TYPE AWTYP, "   
lv_et_exupd  TYPE FCML_COGM_T_EXUPD, "   
lv_not_relevant  TYPE FCML_COGM_T_EXUPD, "   
lv_i_glvor  TYPE GLVOR, "   
lv_error_in_configuration  TYPE GLVOR, "   
lv_i_afabe  TYPE AFABE_D, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_i_acc_principle  TYPE ACCOUNTING_PRINCIPLE, "   
lv_i_ldgrp  TYPE FAGL_LDGRP, "   
lv_i_hkont  TYPE HKONT, "   
lv_i_budat  TYPE BUDAT. "   

  CALL FUNCTION 'FCML0_GET_EXUPD'  "
    EXPORTING
         I_AWTYP = lv_i_awtyp
         I_GLVOR = lv_i_glvor
         I_AFABE = lv_i_afabe
         I_BUKRS = lv_i_bukrs
         I_ACC_PRINCIPLE = lv_i_acc_principle
         I_LDGRP = lv_i_ldgrp
         I_HKONT = lv_i_hkont
         I_BUDAT = lv_i_budat
    IMPORTING
         ET_EXUPD = lv_et_exupd
    EXCEPTIONS
        NOT_RELEVANT = 1
        ERROR_IN_CONFIGURATION = 2
. " FCML0_GET_EXUPD




ABAP code using 7.40 inline data declarations to call FM FCML0_GET_EXUPD

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!