SAP CIF_GEN_LOG_SEND Function Module for NOTRANSL: Logging des Sendens









CIF_GEN_LOG_SEND is a standard cif gen log send SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Logging des Sendens 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 cif gen log send FM, simply by entering the name CIF_GEN_LOG_SEND into the relevant SAP transaction such as SE37 or SE38.

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



Function CIF_GEN_LOG_SEND 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 'CIF_GEN_LOG_SEND'"NOTRANSL: Logging des Sendens
EXPORTING
* IS_CTRLPARAMS = "
* IV_7 = "
* IV_8 = "
IV_FUNCTIONNAME = "
* IV_FLUSH = ' ' "
* IV_1 = "
* IV_2 = "
* IV_3 = "
* IV_4 = "
* IV_5 = "
* IV_6 = "

TABLES
* IT_1 = "
* IT_2 = "
* IT_3 = "
* IT_4 = "
* IT_5 = "
* IT_6 = "
* IT_7 = "
* IT_8 = "
.



IMPORTING Parameters details for CIF_GEN_LOG_SEND

IS_CTRLPARAMS -

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

IV_7 -

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

IV_8 -

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

IV_FUNCTIONNAME -

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

IV_FLUSH -

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

IV_1 -

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

IV_2 -

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

IV_3 -

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

IV_4 -

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

IV_5 -

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

IV_6 -

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

TABLES Parameters details for CIF_GEN_LOG_SEND

IT_1 -

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

IT_2 -

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

IT_3 -

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

IT_4 -

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

IT_5 -

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

IT_6 -

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

IT_7 -

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

IT_8 -

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

Copy and paste ABAP code example for CIF_GEN_LOG_SEND 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:
lt_it_1  TYPE STANDARD TABLE OF STRING, "   
lv_is_ctrlparams  TYPE CIFCTRLPAR, "   
lv_iv_7  TYPE CIFCTRLPAR, "   
lv_iv_8  TYPE CIFCTRLPAR, "   
lt_it_2  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_functionname  TYPE CIFCTRLPAR, "   
lt_it_3  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_flush  TYPE CIFCTRLPAR, "   SPACE
lt_it_4  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_1  TYPE CIFCTRLPAR, "   
lt_it_5  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_2  TYPE CIFCTRLPAR, "   
lt_it_6  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_3  TYPE CIFCTRLPAR, "   
lt_it_7  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_4  TYPE CIFCTRLPAR, "   
lt_it_8  TYPE STANDARD TABLE OF CIFCTRLPAR, "   
lv_iv_5  TYPE CIFCTRLPAR, "   
lv_iv_6  TYPE CIFCTRLPAR. "   

  CALL FUNCTION 'CIF_GEN_LOG_SEND'  "NOTRANSL: Logging des Sendens
    EXPORTING
         IS_CTRLPARAMS = lv_is_ctrlparams
         IV_7 = lv_iv_7
         IV_8 = lv_iv_8
         IV_FUNCTIONNAME = lv_iv_functionname
         IV_FLUSH = lv_iv_flush
         IV_1 = lv_iv_1
         IV_2 = lv_iv_2
         IV_3 = lv_iv_3
         IV_4 = lv_iv_4
         IV_5 = lv_iv_5
         IV_6 = lv_iv_6
    TABLES
         IT_1 = lt_it_1
         IT_2 = lt_it_2
         IT_3 = lt_it_3
         IT_4 = lt_it_4
         IT_5 = lt_it_5
         IT_6 = lt_it_6
         IT_7 = lt_it_7
         IT_8 = lt_it_8
. " CIF_GEN_LOG_SEND




ABAP code using 7.40 inline data declarations to call FM CIF_GEN_LOG_SEND

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_iv_flush) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 


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!