SAP FDM_COLL_SEND_PROCEDURE_GET Function Module for









FDM_COLL_SEND_PROCEDURE_GET is a standard fdm coll send procedure get 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 coll send procedure get FM, simply by entering the name FDM_COLL_SEND_PROCEDURE_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function FDM_COLL_SEND_PROCEDURE_GET 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_COLL_SEND_PROCEDURE_GET'"
EXPORTING
I_MODE = "Run Mode for Program FDM_COLL_SEND_ITEMS
* I_COMPCOD_XBRANCH = "Include All Items for Branch Office
* I_CCOLOAD_XBRANCH = "Include All Items for Branch Office
* I_NO_CCOLOAD_ENTRY = "
* I_NO_COMPCOD_ENTRY = "
* I_COMPCOD_XPAYER = "Include Alternative Payer
* I_CCOLOAD_XPAYER = "Include Alternative Payer

IMPORTING
E_XBRANCH = "
E_XSEND_DEL_IDOC_PROCEED = "
E_XSEND_DEL_IDOC_STOP = "
E_XUPD_BRHEAD = "
E_XDEL_BRHEAD = "
E_XPAYER = "Include Alternative Payer

EXCEPTIONS
INVALID_CALL = 1 INITIAL_LOAD_FIRST = 2 NO_ACTION_REQUIRED = 3
.



IMPORTING Parameters details for FDM_COLL_SEND_PROCEDURE_GET

I_MODE - Run Mode for Program FDM_COLL_SEND_ITEMS

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

I_COMPCOD_XBRANCH - Include All Items for Branch Office

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

I_CCOLOAD_XBRANCH - Include All Items for Branch Office

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

I_NO_CCOLOAD_ENTRY -

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

I_NO_COMPCOD_ENTRY -

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

I_COMPCOD_XPAYER - Include Alternative Payer

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

I_CCOLOAD_XPAYER - Include Alternative Payer

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

EXPORTING Parameters details for FDM_COLL_SEND_PROCEDURE_GET

E_XBRANCH -

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

E_XSEND_DEL_IDOC_PROCEED -

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

E_XSEND_DEL_IDOC_STOP -

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

E_XUPD_BRHEAD -

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

E_XDEL_BRHEAD -

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

E_XPAYER - Include Alternative Payer

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

EXCEPTIONS details

INVALID_CALL -

Data type:
Optional: No
Call by Reference: Yes

INITIAL_LOAD_FIRST -

Data type:
Optional: No
Call by Reference: Yes

NO_ACTION_REQUIRED - No action required

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FDM_COLL_SEND_PROCEDURE_GET 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_mode  TYPE FDM_COLL_SEND_RUN_MODE, "   
lv_e_xbranch  TYPE FDM_COLL_XBRANCH, "   
lv_invalid_call  TYPE FDM_COLL_XBRANCH, "   
lv_i_compcod_xbranch  TYPE FDM_COLL_XBRANCH, "   
lv_initial_load_first  TYPE FDM_COLL_XBRANCH, "   
lv_e_xsend_del_idoc_proceed  TYPE XFELD, "   
lv_i_ccoload_xbranch  TYPE FDM_COLL_XBRANCH, "   
lv_no_action_required  TYPE FDM_COLL_XBRANCH, "   
lv_e_xsend_del_idoc_stop  TYPE XFELD, "   
lv_e_xupd_brhead  TYPE XFELD, "   
lv_i_no_ccoload_entry  TYPE XFELD, "   
lv_e_xdel_brhead  TYPE XFELD, "   
lv_i_no_compcod_entry  TYPE XFELD, "   
lv_e_xpayer  TYPE FDM_COLL_XPAYER, "   
lv_i_compcod_xpayer  TYPE FDM_COLL_XPAYER, "   
lv_i_ccoload_xpayer  TYPE FDM_COLL_XPAYER. "   

  CALL FUNCTION 'FDM_COLL_SEND_PROCEDURE_GET'  "
    EXPORTING
         I_MODE = lv_i_mode
         I_COMPCOD_XBRANCH = lv_i_compcod_xbranch
         I_CCOLOAD_XBRANCH = lv_i_ccoload_xbranch
         I_NO_CCOLOAD_ENTRY = lv_i_no_ccoload_entry
         I_NO_COMPCOD_ENTRY = lv_i_no_compcod_entry
         I_COMPCOD_XPAYER = lv_i_compcod_xpayer
         I_CCOLOAD_XPAYER = lv_i_ccoload_xpayer
    IMPORTING
         E_XBRANCH = lv_e_xbranch
         E_XSEND_DEL_IDOC_PROCEED = lv_e_xsend_del_idoc_proceed
         E_XSEND_DEL_IDOC_STOP = lv_e_xsend_del_idoc_stop
         E_XUPD_BRHEAD = lv_e_xupd_brhead
         E_XDEL_BRHEAD = lv_e_xdel_brhead
         E_XPAYER = lv_e_xpayer
    EXCEPTIONS
        INVALID_CALL = 1
        INITIAL_LOAD_FIRST = 2
        NO_ACTION_REQUIRED = 3
. " FDM_COLL_SEND_PROCEDURE_GET




ABAP code using 7.40 inline data declarations to call FM FDM_COLL_SEND_PROCEDURE_GET

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!