SAP BBP_CON_CHECK_EXISTENCE Function Module for









BBP_CON_CHECK_EXISTENCE is a standard bbp con check existence 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 bbp con check existence FM, simply by entering the name BBP_CON_CHECK_EXISTENCE into the relevant SAP transaction such as SE37 or SE38.

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



Function BBP_CON_CHECK_EXISTENCE 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 'BBP_CON_CHECK_EXISTENCE'"
EXPORTING
* I_LOG_SYS = "
* I_ITEM_GUID = "
* I_ITEM_NUMBER = "
* I_HDR_NUMBER = "
* I_HDR_GUID = "
* I_BE_LOG_SYSTEM = "
I_LOG_INITIALIZED_FLAG = "
* I_ITEM_CHECK_FLAG = 'X' "
P_OBJECT_TYPE = "

IMPORTING
E_LOG_SYS = "
E_ITEM_GUID = "
E_ITEM_NUMBER = "
E_HDR_NUMBER = "
E_HDR_GUID = "
E_MESSAGES = "

TABLES
ET_ITEM = "
.



IMPORTING Parameters details for BBP_CON_CHECK_EXISTENCE

I_LOG_SYS -

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

I_ITEM_GUID -

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

I_ITEM_NUMBER -

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

I_HDR_NUMBER -

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

I_HDR_GUID -

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

I_BE_LOG_SYSTEM -

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

I_LOG_INITIALIZED_FLAG -

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

I_ITEM_CHECK_FLAG -

Data type: XFLAG
Default: 'X'
Optional: No
Call by Reference: Yes

P_OBJECT_TYPE -

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

EXPORTING Parameters details for BBP_CON_CHECK_EXISTENCE

E_LOG_SYS -

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

E_ITEM_GUID -

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

E_ITEM_NUMBER -

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

E_HDR_NUMBER -

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

E_HDR_GUID -

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

E_MESSAGES -

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

TABLES Parameters details for BBP_CON_CHECK_EXISTENCE

ET_ITEM -

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

Copy and paste ABAP code example for BBP_CON_CHECK_EXISTENCE 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_et_item  TYPE STANDARD TABLE OF BBP_PDS_CTR_ITEM_D, "   
lv_e_log_sys  TYPE BBP_CTR_LOG_SYSTEM, "   
lv_i_log_sys  TYPE BBP_CTR_LOG_SYSTEM, "   
lv_e_item_guid  TYPE BBP_CTR_I_GUID, "   
lv_i_item_guid  TYPE BBP_CTR_I_GUID, "   
lv_e_item_number  TYPE BBP_CTR_ITEM, "   
lv_i_item_number  TYPE BBP_CTR_ITEM, "   
lv_e_hdr_number  TYPE BBP_CTR_ID, "   
lv_i_hdr_number  TYPE BBP_CTR_ID, "   
lv_e_hdr_guid  TYPE BBP_CTR_H_GUID, "   
lv_i_hdr_guid  TYPE BBP_CTR_H_GUID, "   
lv_e_messages  TYPE BBP_PDT_MESSAGES, "   
lv_i_be_log_system  TYPE BE_LOG_SYSTEM, "   
lv_i_log_initialized_flag  TYPE XFLAG, "   
lv_i_item_check_flag  TYPE XFLAG, "   'X'
lv_p_object_type  TYPE CRMT_SWO_OBJTYP_PROCESS_ITM_DB. "   

  CALL FUNCTION 'BBP_CON_CHECK_EXISTENCE'  "
    EXPORTING
         I_LOG_SYS = lv_i_log_sys
         I_ITEM_GUID = lv_i_item_guid
         I_ITEM_NUMBER = lv_i_item_number
         I_HDR_NUMBER = lv_i_hdr_number
         I_HDR_GUID = lv_i_hdr_guid
         I_BE_LOG_SYSTEM = lv_i_be_log_system
         I_LOG_INITIALIZED_FLAG = lv_i_log_initialized_flag
         I_ITEM_CHECK_FLAG = lv_i_item_check_flag
         P_OBJECT_TYPE = lv_p_object_type
    IMPORTING
         E_LOG_SYS = lv_e_log_sys
         E_ITEM_GUID = lv_e_item_guid
         E_ITEM_NUMBER = lv_e_item_number
         E_HDR_NUMBER = lv_e_hdr_number
         E_HDR_GUID = lv_e_hdr_guid
         E_MESSAGES = lv_e_messages
    TABLES
         ET_ITEM = lt_et_item
. " BBP_CON_CHECK_EXISTENCE




ABAP code using 7.40 inline data declarations to call FM BBP_CON_CHECK_EXISTENCE

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


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!