SAP ALE_ODTF_CCTR Function Module for ALE-Outbound: Update of cost center master data via IDOC









ALE_ODTF_CCTR is a standard ale odtf cctr SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ALE-Outbound: Update of cost center master data via IDOC 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 ale odtf cctr FM, simply by entering the name ALE_ODTF_CCTR into the relevant SAP transaction such as SE37 or SE38.

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



Function ALE_ODTF_CCTR 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 'ALE_ODTF_CCTR'"ALE-Outbound: Update of cost center master data via IDOC
EXPORTING
DATA = "
* RECEIVERS = "
* SERIAL_ID = 'BUS0012 0000' "

TABLES
* COMMUNICATION_DOCUMENTS = "
* IDOC_COMM = "Table Type for EDIDC (IDoc Control Record)

EXCEPTIONS
ERROR_CREATING_IDOCS = 1
.



IMPORTING Parameters details for ALE_ODTF_CCTR

DATA -

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

RECEIVERS -

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

SERIAL_ID -

Data type: BDI_SERIAL
Default: 'BUS0012 0000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ALE_ODTF_CCTR

COMMUNICATION_DOCUMENTS -

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

IDOC_COMM - Table Type for EDIDC (IDoc Control Record)

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

EXCEPTIONS details

ERROR_CREATING_IDOCS -

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

Copy and paste ABAP code example for ALE_ODTF_CCTR 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_data  TYPE ODTF_S_COST_CENTER_REPL, "   
lv_error_creating_idocs  TYPE ODTF_S_COST_CENTER_REPL, "   
lt_communication_documents  TYPE STANDARD TABLE OF COMM_RETS, "   
lt_idoc_comm  TYPE STANDARD TABLE OF EDIDC_TT, "   
lv_receivers  TYPE BDI_RCVT, "   
lv_serial_id  TYPE BDI_SERIAL. "   'BUS0012 0000'

  CALL FUNCTION 'ALE_ODTF_CCTR'  "ALE-Outbound: Update of cost center master data via IDOC
    EXPORTING
         DATA = lv_data
         RECEIVERS = lv_receivers
         SERIAL_ID = lv_serial_id
    TABLES
         COMMUNICATION_DOCUMENTS = lt_communication_documents
         IDOC_COMM = lt_idoc_comm
    EXCEPTIONS
        ERROR_CREATING_IDOCS = 1
. " ALE_ODTF_CCTR




ABAP code using 7.40 inline data declarations to call FM ALE_ODTF_CCTR

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.

 
 
 
 
 
DATA(ld_serial_id) = 'BUS0012 0000'.
 


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!