SAP PI_BP_CALL_EXIT_BCS2S_RD Function Module for NOTRANSL: Funktionsbaustein zum Aufruf des User Exits OPEN_FI_PERFORM_DE_B









PI_BP_CALL_EXIT_BCS2S_RD is a standard pi bp call exit bcs2s rd 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: Funktionsbaustein zum Aufruf des User Exits OPEN_FI_PERFORM_DE_B 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 pi bp call exit bcs2s rd FM, simply by entering the name PI_BP_CALL_EXIT_BCS2S_RD into the relevant SAP transaction such as SE37 or SE38.

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



Function PI_BP_CALL_EXIT_BCS2S_RD 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 'PI_BP_CALL_EXIT_BCS2S_RD'"NOTRANSL: Funktionsbaustein zum Aufruf des User Exits OPEN_FI_PERFORM_DE_B
TABLES
CT_BAPIMTCS = "
IT_XKNAS = "
IT_YKNAS = "
IT_XKNB5 = "
IT_YKNB5 = "
IT_XKNBK = "
IT_YKNBK = "
IT_XKNVA = "
IT_YKNVA = "
IT_XKNVI = "
IT_YKNVI = "
IT_CRMKUNNR = "
IT_XKNVK = "
IT_YKNVK = "
IT_XKNVP = "
IT_YKNVP = "
IT_CRMPARNR = "Mapping Table Business Partner Relationship - Contact Person
IT_XKNA1 = "
IT_YKNA1 = "
IT_XKNB1 = "Customer Master (Company Code)
IT_YKNB1 = "Customer Master (Company Code)
IT_XKNVV = "
IT_YKNVV = "
.



TABLES Parameters details for PI_BP_CALL_EXIT_BCS2S_RD

CT_BAPIMTCS -

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

IT_XKNAS -

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

IT_YKNAS -

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

IT_XKNB5 -

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

IT_YKNB5 -

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

IT_XKNBK -

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

IT_YKNBK -

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

IT_XKNVA -

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

IT_YKNVA -

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

IT_XKNVI -

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

IT_YKNVI -

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

IT_CRMKUNNR -

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

IT_XKNVK -

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

IT_YKNVK -

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

IT_XKNVP -

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

IT_YKNVP -

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

IT_CRMPARNR - Mapping Table Business Partner Relationship - Contact Person

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

IT_XKNA1 -

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

IT_YKNA1 -

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

IT_XKNB1 - Customer Master (Company Code)

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

IT_YKNB1 - Customer Master (Company Code)

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

IT_XKNVV -

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

IT_YKNVV -

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

Copy and paste ABAP code example for PI_BP_CALL_EXIT_BCS2S_RD 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_ct_bapimtcs  TYPE STANDARD TABLE OF BAPIMTCS, "   
lt_it_xknas  TYPE STANDARD TABLE OF KNAS, "   
lt_it_yknas  TYPE STANDARD TABLE OF KNAS, "   
lt_it_xknb5  TYPE STANDARD TABLE OF KNB5, "   
lt_it_yknb5  TYPE STANDARD TABLE OF KNB5, "   
lt_it_xknbk  TYPE STANDARD TABLE OF KNBK, "   
lt_it_yknbk  TYPE STANDARD TABLE OF KNBK, "   
lt_it_xknva  TYPE STANDARD TABLE OF KNVA, "   
lt_it_yknva  TYPE STANDARD TABLE OF KNVA, "   
lt_it_xknvi  TYPE STANDARD TABLE OF KNVI, "   
lt_it_yknvi  TYPE STANDARD TABLE OF KNVI, "   
lt_it_crmkunnr  TYPE STANDARD TABLE OF CRMKUNNR, "   
lt_it_xknvk  TYPE STANDARD TABLE OF KNVK, "   
lt_it_yknvk  TYPE STANDARD TABLE OF KNVK, "   
lt_it_xknvp  TYPE STANDARD TABLE OF KNVP, "   
lt_it_yknvp  TYPE STANDARD TABLE OF KNVP, "   
lt_it_crmparnr  TYPE STANDARD TABLE OF CRMPARNR, "   
lt_it_xkna1  TYPE STANDARD TABLE OF KNA1, "   
lt_it_ykna1  TYPE STANDARD TABLE OF KNA1, "   
lt_it_xknb1  TYPE STANDARD TABLE OF KNB1, "   
lt_it_yknb1  TYPE STANDARD TABLE OF KNB1, "   
lt_it_xknvv  TYPE STANDARD TABLE OF KNVV, "   
lt_it_yknvv  TYPE STANDARD TABLE OF KNVV. "   

  CALL FUNCTION 'PI_BP_CALL_EXIT_BCS2S_RD'  "NOTRANSL: Funktionsbaustein zum Aufruf des User Exits OPEN_FI_PERFORM_DE_B
    TABLES
         CT_BAPIMTCS = lt_ct_bapimtcs
         IT_XKNAS = lt_it_xknas
         IT_YKNAS = lt_it_yknas
         IT_XKNB5 = lt_it_xknb5
         IT_YKNB5 = lt_it_yknb5
         IT_XKNBK = lt_it_xknbk
         IT_YKNBK = lt_it_yknbk
         IT_XKNVA = lt_it_xknva
         IT_YKNVA = lt_it_yknva
         IT_XKNVI = lt_it_xknvi
         IT_YKNVI = lt_it_yknvi
         IT_CRMKUNNR = lt_it_crmkunnr
         IT_XKNVK = lt_it_xknvk
         IT_YKNVK = lt_it_yknvk
         IT_XKNVP = lt_it_xknvp
         IT_YKNVP = lt_it_yknvp
         IT_CRMPARNR = lt_it_crmparnr
         IT_XKNA1 = lt_it_xkna1
         IT_YKNA1 = lt_it_ykna1
         IT_XKNB1 = lt_it_xknb1
         IT_YKNB1 = lt_it_yknb1
         IT_XKNVV = lt_it_xknvv
         IT_YKNVV = lt_it_yknvv
. " PI_BP_CALL_EXIT_BCS2S_RD




ABAP code using 7.40 inline data declarations to call FM PI_BP_CALL_EXIT_BCS2S_RD

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!