SAP BCOS_READ_MSG_CUSTOMIZING Function Module for









BCOS_READ_MSG_CUSTOMIZING is a standard bcos read msg customizing 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 bcos read msg customizing FM, simply by entering the name BCOS_READ_MSG_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.

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



Function BCOS_READ_MSG_CUSTOMIZING 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 'BCOS_READ_MSG_CUSTOMIZING'"
IMPORTING
DESTINATION = "
SEND_TO_OSS = "
SEND_TO_SM = "
CLIENT = "
VERSION = "
AUTHOR_CHCK = "Authorization check active
TITLE_40 = "

EXCEPTIONS
CUSTOMIZING_INCOMPLETE = 1 CUSTOMIZING_MISSING = 2
.



EXPORTING Parameters details for BCOS_READ_MSG_CUSTOMIZING

DESTINATION -

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

SEND_TO_OSS -

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

SEND_TO_SM -

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

CLIENT -

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

VERSION -

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

AUTHOR_CHCK - Authorization check active

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

TITLE_40 -

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

EXCEPTIONS details

CUSTOMIZING_INCOMPLETE -

Data type:
Optional: No
Call by Reference: Yes

CUSTOMIZING_MISSING -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BCOS_READ_MSG_CUSTOMIZING 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_destination  TYPE RFCDES-RFCDEST, "   
lv_customizing_incomplete  TYPE RFCDES, "   
lv_send_to_oss  TYPE RFCDES, "   
lv_customizing_missing  TYPE RFCDES, "   
lv_send_to_sm  TYPE RFCDES, "   
lv_client  TYPE BCOS_CUST-CLIENT, "   
lv_version  TYPE BCOS_CUST-VERSION, "   
lv_author_chck  TYPE BCOS_CUST, "   
lv_title_40  TYPE BCOS_CUST. "   

  CALL FUNCTION 'BCOS_READ_MSG_CUSTOMIZING'  "
    IMPORTING
         DESTINATION = lv_destination
         SEND_TO_OSS = lv_send_to_oss
         SEND_TO_SM = lv_send_to_sm
         CLIENT = lv_client
         VERSION = lv_version
         AUTHOR_CHCK = lv_author_chck
         TITLE_40 = lv_title_40
    EXCEPTIONS
        CUSTOMIZING_INCOMPLETE = 1
        CUSTOMIZING_MISSING = 2
. " BCOS_READ_MSG_CUSTOMIZING




ABAP code using 7.40 inline data declarations to call FM BCOS_READ_MSG_CUSTOMIZING

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 RFCDEST FROM RFCDES INTO @DATA(ld_destination).
 
 
 
 
 
"SELECT single CLIENT FROM BCOS_CUST INTO @DATA(ld_client).
 
"SELECT single VERSION FROM BCOS_CUST INTO @DATA(ld_version).
 
 
 


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!