SAP FDM_AR_SYNC_LDDB_REORG Function Module for









FDM_AR_SYNC_LDDB_REORG is a standard fdm ar sync lddb reorg 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 fdm ar sync lddb reorg FM, simply by entering the name FDM_AR_SYNC_LDDB_REORG into the relevant SAP transaction such as SE37 or SE38.

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



Function FDM_AR_SYNC_LDDB_REORG 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 'FDM_AR_SYNC_LDDB_REORG'"
EXPORTING
I_CASE_TYPE = "
I_BUKRS = "Company Code
I_GJAHR = "Fiscal Year
IT_BELNR = "Range Table Type for Field BELNR
* IT_EXEC_DATE = "FSCM-DM: Range Table for Date Field
* IT_USERID = "FSCM-DM: Table Type for Range User

IMPORTING
ES_RETURN = "Return Parameter(s)
ET_LDDB_REORG = "Table Type for FDM_LDDB

EXCEPTIONS
NO_SELECTIONPARAMETER = 1
.



IMPORTING Parameters details for FDM_AR_SYNC_LDDB_REORG

I_CASE_TYPE -

Data type: BDM_CASE_TYPE
Optional: No
Call by Reference: Yes

I_BUKRS - Company Code

Data type: BUKRS
Optional: No
Call by Reference: Yes

I_GJAHR - Fiscal Year

Data type: GJAHR
Optional: No
Call by Reference: Yes

IT_BELNR - Range Table Type for Field BELNR

Data type: RNG_BELNR_TT
Optional: No
Call by Reference: Yes

IT_EXEC_DATE - FSCM-DM: Range Table for Date Field

Data type: FDM_T_RNG_DATE
Optional: Yes
Call by Reference: Yes

IT_USERID - FSCM-DM: Table Type for Range User

Data type: FDM_T_RNG_USER
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FDM_AR_SYNC_LDDB_REORG

ES_RETURN - Return Parameter(s)

Data type: BAPIRET2
Optional: No
Call by Reference: Yes

ET_LDDB_REORG - Table Type for FDM_LDDB

Data type: FDM_T_LDDB
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_SELECTIONPARAMETER -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FDM_AR_SYNC_LDDB_REORG 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_es_return  TYPE BAPIRET2, "   
lv_i_case_type  TYPE BDM_CASE_TYPE, "   
lv_no_selectionparameter  TYPE BDM_CASE_TYPE, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_et_lddb_reorg  TYPE FDM_T_LDDB, "   
lv_i_gjahr  TYPE GJAHR, "   
lv_it_belnr  TYPE RNG_BELNR_TT, "   
lv_it_exec_date  TYPE FDM_T_RNG_DATE, "   
lv_it_userid  TYPE FDM_T_RNG_USER. "   

  CALL FUNCTION 'FDM_AR_SYNC_LDDB_REORG'  "
    EXPORTING
         I_CASE_TYPE = lv_i_case_type
         I_BUKRS = lv_i_bukrs
         I_GJAHR = lv_i_gjahr
         IT_BELNR = lv_it_belnr
         IT_EXEC_DATE = lv_it_exec_date
         IT_USERID = lv_it_userid
    IMPORTING
         ES_RETURN = lv_es_return
         ET_LDDB_REORG = lv_et_lddb_reorg
    EXCEPTIONS
        NO_SELECTIONPARAMETER = 1
. " FDM_AR_SYNC_LDDB_REORG




ABAP code using 7.40 inline data declarations to call FM FDM_AR_SYNC_LDDB_REORG

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!