SAP CRS_CUSTOMER_BLOCK_BUILD Function Module for NOTRANSL: Aufbau der Blöcke für den Initial Download









CRS_CUSTOMER_BLOCK_BUILD is a standard crs customer block build 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: Aufbau der Blöcke für den Initial Download 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 crs customer block build FM, simply by entering the name CRS_CUSTOMER_BLOCK_BUILD into the relevant SAP transaction such as SE37 or SE38.

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



Function CRS_CUSTOMER_BLOCK_BUILD 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 'CRS_CUSTOMER_BLOCK_BUILD'"NOTRANSL: Aufbau der Blöcke für den Initial Download
EXPORTING
IV_BLOCKSIZE = "Maximum Number of Customers per Read Transaction
IV_SELECT_TABLENAME = "Table Name
* IV_BUILD_NEW_BLOCKS = ' ' "Checkbox
IV_MAX_BLOCKSIZE = "Maximum Number of Customers per Read Transaction

TABLES
IT_SELECT_FIELDS = "Transfer structure for dynamic selection parameters

EXCEPTIONS
BLOCKS_EXIST = 1 TECHNICAL_ERROR = 2 BLOCK_TOO_BIG = 3
.



IMPORTING Parameters details for CRS_CUSTOMER_BLOCK_BUILD

IV_BLOCKSIZE - Maximum Number of Customers per Read Transaction

Data type: SEL_FIELDS-MAX_KUNNR
Optional: No
Call by Reference: Yes

IV_SELECT_TABLENAME - Table Name

Data type: DFIES-TABNAME
Optional: No
Call by Reference: Yes

IV_BUILD_NEW_BLOCKS - Checkbox

Data type: CRM_PARA-XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IV_MAX_BLOCKSIZE - Maximum Number of Customers per Read Transaction

Data type: SEL_FIELDS-MAX_KUNNR
Optional: No
Call by Reference: Yes

TABLES Parameters details for CRS_CUSTOMER_BLOCK_BUILD

IT_SELECT_FIELDS - Transfer structure for dynamic selection parameters

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

EXCEPTIONS details

BLOCKS_EXIST -

Data type:
Optional: No
Call by Reference: Yes

TECHNICAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

BLOCK_TOO_BIG -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CRS_CUSTOMER_BLOCK_BUILD 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_blocks_exist  TYPE STRING, "   
lv_iv_blocksize  TYPE SEL_FIELDS-MAX_KUNNR, "   
lt_it_select_fields  TYPE STANDARD TABLE OF SEL_TABLE, "   
lv_technical_error  TYPE SEL_TABLE, "   
lv_iv_select_tablename  TYPE DFIES-TABNAME, "   
lv_block_too_big  TYPE DFIES, "   
lv_iv_build_new_blocks  TYPE CRM_PARA-XFELD, "   SPACE
lv_iv_max_blocksize  TYPE SEL_FIELDS-MAX_KUNNR. "   

  CALL FUNCTION 'CRS_CUSTOMER_BLOCK_BUILD'  "NOTRANSL: Aufbau der Blöcke für den Initial Download
    EXPORTING
         IV_BLOCKSIZE = lv_iv_blocksize
         IV_SELECT_TABLENAME = lv_iv_select_tablename
         IV_BUILD_NEW_BLOCKS = lv_iv_build_new_blocks
         IV_MAX_BLOCKSIZE = lv_iv_max_blocksize
    TABLES
         IT_SELECT_FIELDS = lt_it_select_fields
    EXCEPTIONS
        BLOCKS_EXIST = 1
        TECHNICAL_ERROR = 2
        BLOCK_TOO_BIG = 3
. " CRS_CUSTOMER_BLOCK_BUILD




ABAP code using 7.40 inline data declarations to call FM CRS_CUSTOMER_BLOCK_BUILD

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 MAX_KUNNR FROM SEL_FIELDS INTO @DATA(ld_iv_blocksize).
 
 
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_iv_select_tablename).
 
 
"SELECT single XFELD FROM CRM_PARA INTO @DATA(ld_iv_build_new_blocks).
DATA(ld_iv_build_new_blocks) = ' '.
 
"SELECT single MAX_KUNNR FROM SEL_FIELDS INTO @DATA(ld_iv_max_blocksize).
 


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!