SAP FDM_CCT_GET_MULTI Function Module for
FDM_CCT_GET_MULTI is a standard fdm cct get multi 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 cct get multi FM, simply by entering the name FDM_CCT_GET_MULTI into the relevant SAP transaction such as SE37 or SE38.
Function Group: FDM_CCT_SERVICES
Program Name: SAPLFDM_CCT_SERVICES
Main Program: SAPLFDM_CCT_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FDM_CCT_GET_MULTI 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_CCT_GET_MULTI'".
EXPORTING
I_COLL_SEGMENT = "
I_CUSTOMER = "
* IT_BRANCH = "
* IT_CUSTOMER_PARTNER = "
* I_SINCE_DATE = "
* IX_BYPASS_BUFFER = "
IMPORTING
ET_CCT_ATTR = "
ET_NOTES = "
ET_RELATIONS = "
ES_RETURN = "
IMPORTING Parameters details for FDM_CCT_GET_MULTI
I_COLL_SEGMENT -
Data type: BDM_COLL_SEGMENTOptional: No
Call by Reference: Yes
I_CUSTOMER -
Data type: KUNNROptional: No
Call by Reference: Yes
IT_BRANCH -
Data type: FDM_T_COLL_BR_HEADOptional: Yes
Call by Reference: Yes
IT_CUSTOMER_PARTNER -
Data type: FDM_T_COLL_CUSTOMER_2_PARTNEROptional: Yes
Call by Reference: Yes
I_SINCE_DATE -
Data type: BDM_CCT_TIMEOptional: Yes
Call by Reference: Yes
IX_BYPASS_BUFFER -
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FDM_CCT_GET_MULTI
ET_CCT_ATTR -
Data type: BDM_T_CCTOptional: No
Call by Reference: Yes
ET_NOTES -
Data type: BDM_T_SPLIT_NOTESOptional: No
Call by Reference: Yes
ET_RELATIONS -
Data type: BDM_T_CCT_RELOptional: No
Call by Reference: Yes
ES_RETURN -
Data type: BAPIRET2Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FDM_CCT_GET_MULTI 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_et_cct_attr | TYPE BDM_T_CCT, " | |||
| lv_i_coll_segment | TYPE BDM_COLL_SEGMENT, " | |||
| lv_et_notes | TYPE BDM_T_SPLIT_NOTES, " | |||
| lv_i_customer | TYPE KUNNR, " | |||
| lv_it_branch | TYPE FDM_T_COLL_BR_HEAD, " | |||
| lv_et_relations | TYPE BDM_T_CCT_REL, " | |||
| lv_es_return | TYPE BAPIRET2, " | |||
| lv_it_customer_partner | TYPE FDM_T_COLL_CUSTOMER_2_PARTNER, " | |||
| lv_i_since_date | TYPE BDM_CCT_TIME, " | |||
| lv_ix_bypass_buffer | TYPE BOOLE_D. " |
|   CALL FUNCTION 'FDM_CCT_GET_MULTI' " |
| EXPORTING | ||
| I_COLL_SEGMENT | = lv_i_coll_segment | |
| I_CUSTOMER | = lv_i_customer | |
| IT_BRANCH | = lv_it_branch | |
| IT_CUSTOMER_PARTNER | = lv_it_customer_partner | |
| I_SINCE_DATE | = lv_i_since_date | |
| IX_BYPASS_BUFFER | = lv_ix_bypass_buffer | |
| IMPORTING | ||
| ET_CCT_ATTR | = lv_et_cct_attr | |
| ET_NOTES | = lv_et_notes | |
| ET_RELATIONS | = lv_et_relations | |
| ES_RETURN | = lv_es_return | |
| . " FDM_CCT_GET_MULTI | ||
ABAP code using 7.40 inline data declarations to call FM FDM_CCT_GET_MULTI
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