SAP FS06_BUPA_BP3100_COM_BA_PA Function Module for
FS06_BUPA_BP3100_COM_BA_PA is a standard fs06 bupa bp3100 com ba pa 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 fs06 bupa bp3100 com ba pa FM, simply by entering the name FS06_BUPA_BP3100_COM_BA_PA into the relevant SAP transaction such as SE37 or SE38.
Function Group: FSBP_ADD_01
Program Name: SAPLFSBP_ADD_01
Main Program: SAPLFSBP_ADD_01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FS06_BUPA_BP3100_COM_BA_PA 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 'FS06_BUPA_BP3100_COM_BA_PA'".
IMPORTING
GV_RB_CRITER_TMP = "BP: Differentiation Type Criterion
GV_RB_ADDTYPE_TMP = "Information Category
GV_RB_DATA_TYPE_TMP = "Information Type
GV_RB_TIMESTAMP_TMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
GV_RB_COUNTER_TMP = "Counter
GV_PARTNER_TMP = "Business Partner Number
TABLES
GT_BP3100_TMP = "Business Partner Additional Information
EXPORTING Parameters details for FS06_BUPA_BP3100_COM_BA_PA
GV_RB_CRITER_TMP - BP: Differentiation Type Criterion
Data type: BP3100-CRITEROptional: No
Call by Reference: Yes
GV_RB_ADDTYPE_TMP - Information Category
Data type: BP3100-ADDTYPEOptional: No
Call by Reference: Yes
GV_RB_DATA_TYPE_TMP - Information Type
Data type: BP3100-DATA_TYPEOptional: No
Call by Reference: Yes
GV_RB_TIMESTAMP_TMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: BP3100-TIMESTAMPOptional: No
Call by Reference: Yes
GV_RB_COUNTER_TMP - Counter
Data type: BP3100-COUNTEROptional: No
Call by Reference: Yes
GV_PARTNER_TMP - Business Partner Number
Data type: BUT000-PARTNEROptional: No
Call by Reference: Yes
TABLES Parameters details for FS06_BUPA_BP3100_COM_BA_PA
GT_BP3100_TMP - Business Partner Additional Information
Data type: BP3100Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FS06_BUPA_BP3100_COM_BA_PA 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_gt_bp3100_tmp | TYPE STANDARD TABLE OF BP3100, " | |||
| lv_gv_rb_criter_tmp | TYPE BP3100-CRITER, " | |||
| lv_gv_rb_addtype_tmp | TYPE BP3100-ADDTYPE, " | |||
| lv_gv_rb_data_type_tmp | TYPE BP3100-DATA_TYPE, " | |||
| lv_gv_rb_timestamp_tmp | TYPE BP3100-TIMESTAMP, " | |||
| lv_gv_rb_counter_tmp | TYPE BP3100-COUNTER, " | |||
| lv_gv_partner_tmp | TYPE BUT000-PARTNER. " |
|   CALL FUNCTION 'FS06_BUPA_BP3100_COM_BA_PA' " |
| IMPORTING | ||
| GV_RB_CRITER_TMP | = lv_gv_rb_criter_tmp | |
| GV_RB_ADDTYPE_TMP | = lv_gv_rb_addtype_tmp | |
| GV_RB_DATA_TYPE_TMP | = lv_gv_rb_data_type_tmp | |
| GV_RB_TIMESTAMP_TMP | = lv_gv_rb_timestamp_tmp | |
| GV_RB_COUNTER_TMP | = lv_gv_rb_counter_tmp | |
| GV_PARTNER_TMP | = lv_gv_partner_tmp | |
| TABLES | ||
| GT_BP3100_TMP | = lt_gt_bp3100_tmp | |
| . " FS06_BUPA_BP3100_COM_BA_PA | ||
ABAP code using 7.40 inline data declarations to call FM FS06_BUPA_BP3100_COM_BA_PA
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 CRITER FROM BP3100 INTO @DATA(ld_gv_rb_criter_tmp). | ||||
| "SELECT single ADDTYPE FROM BP3100 INTO @DATA(ld_gv_rb_addtype_tmp). | ||||
| "SELECT single DATA_TYPE FROM BP3100 INTO @DATA(ld_gv_rb_data_type_tmp). | ||||
| "SELECT single TIMESTAMP FROM BP3100 INTO @DATA(ld_gv_rb_timestamp_tmp). | ||||
| "SELECT single COUNTER FROM BP3100 INTO @DATA(ld_gv_rb_counter_tmp). | ||||
| "SELECT single PARTNER FROM BUT000 INTO @DATA(ld_gv_partner_tmp). | ||||
Search for further information about these or an SAP related objects