SAP CIF_ADC_TRANSMIT_ALL Function Module for NOTRANSL: Intitialversorgung für alle Daten









CIF_ADC_TRANSMIT_ALL is a standard cif adc transmit all 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: Intitialversorgung für alle Daten 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 adc transmit all FM, simply by entering the name CIF_ADC_TRANSMIT_ALL into the relevant SAP transaction such as SE37 or SE38.

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



Function CIF_ADC_TRANSMIT_ALL 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_ADC_TRANSMIT_ALL'"NOTRANSL: Intitialversorgung für alle Daten
EXPORTING
* IV_FORCE_ALL = "
* IV_LOCBP = "
* IV_NO_QUEUEWARNING = ' ' "
* IV_LOCK_WAIT = "
* IO_CALLER = "Data Objects for Display in CIF
* IV_NO_MAXVECTOR_UPDATE = "
* IV_MODUS = "
* IV_DEACT_PROTO = "
* IV_IGNORE_FQENTRY = "
* IS_PARPAR = "
* IV_ACT_PROTO = "
* IV_SNP_PLAF = "
* IV_CFGSYS = "
* IV_CFGSYS_FORCE = "

TABLES
CHANGE_MODELS = "

EXCEPTIONS
DIFFERENT_LOGSYS = 1 INTERNAL_ERROR = 2 PROCESSING_ABORTED = 3
.



IMPORTING Parameters details for CIF_ADC_TRANSMIT_ALL

IV_FORCE_ALL -

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

IV_LOCBP -

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

IV_NO_QUEUEWARNING -

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

IV_LOCK_WAIT -

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

IO_CALLER - Data Objects for Display in CIF

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

IV_NO_MAXVECTOR_UPDATE -

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

IV_MODUS -

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

IV_DEACT_PROTO -

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

IV_IGNORE_FQENTRY -

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

IS_PARPAR -

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

IV_ACT_PROTO -

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

IV_SNP_PLAF -

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

IV_CFGSYS -

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

IV_CFGSYS_FORCE -

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

TABLES Parameters details for CIF_ADC_TRANSMIT_ALL

CHANGE_MODELS -

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

EXCEPTIONS details

DIFFERENT_LOGSYS -

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

INTERNAL_ERROR -

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

PROCESSING_ABORTED -

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

Copy and paste ABAP code example for CIF_ADC_TRANSMIT_ALL 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_iv_force_all  TYPE C, "   
lt_change_models  TYPE STANDARD TABLE OF CIF_IMOD, "   
lv_different_logsys  TYPE CIF_IMOD, "   
lv_iv_locbp  TYPE CIF_REPPAR-LOCBP, "   
lv_iv_no_queuewarning  TYPE C, "   SPACE
lv_iv_lock_wait  TYPE CHAR1, "   
lv_io_caller  TYPE CL_CIF_DATA, "   
lv_iv_no_maxvector_update  TYPE CIFREF-XFELD, "   
lv_iv_modus  TYPE C, "   
lv_internal_error  TYPE C, "   
lv_iv_deact_proto  TYPE C, "   
lv_processing_aborted  TYPE C, "   
lv_iv_ignore_fqentry  TYPE C, "   
lv_is_parpar  TYPE CIFPARPAR, "   
lv_iv_act_proto  TYPE C, "   
lv_iv_snp_plaf  TYPE C, "   
lv_iv_cfgsys  TYPE CIF_MTCFGS-CFGSYS, "   
lv_iv_cfgsys_force  TYPE C. "   

  CALL FUNCTION 'CIF_ADC_TRANSMIT_ALL'  "NOTRANSL: Intitialversorgung für alle Daten
    EXPORTING
         IV_FORCE_ALL = lv_iv_force_all
         IV_LOCBP = lv_iv_locbp
         IV_NO_QUEUEWARNING = lv_iv_no_queuewarning
         IV_LOCK_WAIT = lv_iv_lock_wait
         IO_CALLER = lv_io_caller
         IV_NO_MAXVECTOR_UPDATE = lv_iv_no_maxvector_update
         IV_MODUS = lv_iv_modus
         IV_DEACT_PROTO = lv_iv_deact_proto
         IV_IGNORE_FQENTRY = lv_iv_ignore_fqentry
         IS_PARPAR = lv_is_parpar
         IV_ACT_PROTO = lv_iv_act_proto
         IV_SNP_PLAF = lv_iv_snp_plaf
         IV_CFGSYS = lv_iv_cfgsys
         IV_CFGSYS_FORCE = lv_iv_cfgsys_force
    TABLES
         CHANGE_MODELS = lt_change_models
    EXCEPTIONS
        DIFFERENT_LOGSYS = 1
        INTERNAL_ERROR = 2
        PROCESSING_ABORTED = 3
. " CIF_ADC_TRANSMIT_ALL




ABAP code using 7.40 inline data declarations to call FM CIF_ADC_TRANSMIT_ALL

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.

 
 
 
"SELECT single LOCBP FROM CIF_REPPAR INTO @DATA(ld_iv_locbp).
 
DATA(ld_iv_no_queuewarning) = ' '.
 
 
 
"SELECT single XFELD FROM CIFREF INTO @DATA(ld_iv_no_maxvector_update).
 
 
 
 
 
 
 
 
 
"SELECT single CFGSYS FROM CIF_MTCFGS INTO @DATA(ld_iv_cfgsys).
 
 


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!