SAP CIF_ADC_GETBLOCK Function Module for NOTRANSL: Liefert blockweise Filterobjekte für ein Integrationsmodel









CIF_ADC_GETBLOCK is a standard cif adc getblock 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: Liefert blockweise Filterobjekte für ein Integrationsmodel 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 getblock FM, simply by entering the name CIF_ADC_GETBLOCK into the relevant SAP transaction such as SE37 or SE38.

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



Function CIF_ADC_GETBLOCK 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_GETBLOCK'"NOTRANSL: Liefert blockweise Filterobjekte für ein Integrationsmodel
EXPORTING
* IV_FIRSTCALL = ' ' "Generic Type
* IV_FILTERSIZE = 1024 "Block Size for Filter Object Processing
* IV_PARALLEL = "Generic Type
* IV_PARALLEL_APO = "Parallelized Processing of Several Queues in APO

IMPORTING
EV_FINISHED = "
ES_IMOD_DELTA_BLOCK = "Basis Table of Integration Model for APO Interface
EV_BLOCKNO_QNAME = "Block Number for Processing Delta Model

TABLES
IT_DELTA_MODEL = "Basis Table of Integration Model for APO Interface
ET_FILTER_OBJECT = "
.



IMPORTING Parameters details for CIF_ADC_GETBLOCK

IV_FIRSTCALL - Generic Type

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

IV_FILTERSIZE - Block Size for Filter Object Processing

Data type: CIFOBJINFV-FILTERSIZE
Default: 1024
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_PARALLEL - Generic Type

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

IV_PARALLEL_APO - Parallelized Processing of Several Queues in APO

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

EXPORTING Parameters details for CIF_ADC_GETBLOCK

EV_FINISHED -

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

ES_IMOD_DELTA_BLOCK - Basis Table of Integration Model for APO Interface

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

EV_BLOCKNO_QNAME - Block Number for Processing Delta Model

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

TABLES Parameters details for CIF_ADC_GETBLOCK

IT_DELTA_MODEL - Basis Table of Integration Model for APO Interface

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

ET_FILTER_OBJECT -

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

Copy and paste ABAP code example for CIF_ADC_GETBLOCK 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_ev_finished  TYPE STRING, "   
lv_iv_firstcall  TYPE C, "   ' '
lt_it_delta_model  TYPE STANDARD TABLE OF CIF_IMOD, "   
lv_iv_filtersize  TYPE CIFOBJINFV-FILTERSIZE, "   1024
lt_et_filter_object  TYPE STANDARD TABLE OF CIFOBJINFV, "   
lv_es_imod_delta_block  TYPE CIF_IMOD, "   
lv_iv_parallel  TYPE C, "   
lv_ev_blockno_qname  TYPE CIF_BLKNO, "   
lv_iv_parallel_apo  TYPE CIFPARAPO. "   

  CALL FUNCTION 'CIF_ADC_GETBLOCK'  "NOTRANSL: Liefert blockweise Filterobjekte für ein Integrationsmodel
    EXPORTING
         IV_FIRSTCALL = lv_iv_firstcall
         IV_FILTERSIZE = lv_iv_filtersize
         IV_PARALLEL = lv_iv_parallel
         IV_PARALLEL_APO = lv_iv_parallel_apo
    IMPORTING
         EV_FINISHED = lv_ev_finished
         ES_IMOD_DELTA_BLOCK = lv_es_imod_delta_block
         EV_BLOCKNO_QNAME = lv_ev_blockno_qname
    TABLES
         IT_DELTA_MODEL = lt_it_delta_model
         ET_FILTER_OBJECT = lt_et_filter_object
. " CIF_ADC_GETBLOCK




ABAP code using 7.40 inline data declarations to call FM CIF_ADC_GETBLOCK

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_firstcall) = ' '.
 
 
"SELECT single FILTERSIZE FROM CIFOBJINFV INTO @DATA(ld_iv_filtersize).
DATA(ld_iv_filtersize) = 1024.
 
 
 
 
 
 


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!