SAP ISM_BP_DEFAULT_DATA_SET Function Module for Enter Default Business Partner Data









ISM_BP_DEFAULT_DATA_SET is a standard ism bp default data set SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Enter Default Business Partner Data 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 ism bp default data set FM, simply by entering the name ISM_BP_DEFAULT_DATA_SET into the relevant SAP transaction such as SE37 or SE38.

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



Function ISM_BP_DEFAULT_DATA_SET 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 'ISM_BP_DEFAULT_DATA_SET'"Enter Default Business Partner Data
EXPORTING
PV_PARTNER = "Business Partner Number
PS_CENTRAL_DATA = "External Interface: Central Data
* PV_COMPANY_CODE = "Company Code
* PV_SALES_ORG = "Sales Organization
* PV_DISTR_CHANNEL = "Distribution Channel
* PV_DIVISION = "Division

CHANGING
* PS_BUT000 = "BP: General Data I
* PT_KNVI = "IS-M: Standard Table for Structure KNVI
* PS_JGTBP00 = "IS-M: Business Partner Master Data (General Data)
* PS_JGTEUWV = "IS-M: Retailer
* PS_JJTVM = "IS-M/AM: Media Sales Area Customer
* PS_JGTEUWVV = "IS-M/SD: Retailer - Sales Data
* PS_KNA1 = "Customer Master (General Part)
* PS_KNB1 = "Customer Master (Company Code)
* PT_KNB5 = "IS-M: Standard Table for Structure KNB5
* PS_KNVV = "Customer Master Sales Data
.



IMPORTING Parameters details for ISM_BP_DEFAULT_DATA_SET

PV_PARTNER - Business Partner Number

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

PS_CENTRAL_DATA - External Interface: Central Data

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

PV_COMPANY_CODE - Company Code

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

PV_SALES_ORG - Sales Organization

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

PV_DISTR_CHANNEL - Distribution Channel

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

PV_DIVISION - Division

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

CHANGING Parameters details for ISM_BP_DEFAULT_DATA_SET

PS_BUT000 - BP: General Data I

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

PT_KNVI - IS-M: Standard Table for Structure KNVI

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

PS_JGTBP00 - IS-M: Business Partner Master Data (General Data)

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

PS_JGTEUWV - IS-M: Retailer

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

PS_JJTVM - IS-M/AM: Media Sales Area Customer

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

PS_JGTEUWVV - IS-M/SD: Retailer - Sales Data

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

PS_KNA1 - Customer Master (General Part)

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

PS_KNB1 - Customer Master (Company Code)

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

PT_KNB5 - IS-M: Standard Table for Structure KNB5

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

PS_KNVV - Customer Master Sales Data

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

Copy and paste ABAP code example for ISM_BP_DEFAULT_DATA_SET 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_ps_but000  TYPE BUT000, "   
lv_pv_partner  TYPE BU_PARTNER, "   
lv_pt_knvi  TYPE JGTBP_KNVI_TAB, "   
lv_ps_jgtbp00  TYPE JGTBP00, "   
lv_ps_central_data  TYPE BUS_EI_CENTRAL_DATA, "   
lv_ps_jgteuwv  TYPE JGTEUWV, "   
lv_pv_company_code  TYPE BUKRS, "   
lv_ps_jjtvm  TYPE JJTVM, "   
lv_pv_sales_org  TYPE VKORG, "   
lv_ps_jgteuwvv  TYPE JGTEUWVV, "   
lv_pv_distr_channel  TYPE VTWEG, "   
lv_ps_kna1  TYPE KNA1, "   
lv_pv_division  TYPE SPART, "   
lv_ps_knb1  TYPE KNB1, "   
lv_pt_knb5  TYPE JGTBP_KNB5_TAB, "   
lv_ps_knvv  TYPE KNVV. "   

  CALL FUNCTION 'ISM_BP_DEFAULT_DATA_SET'  "Enter Default Business Partner Data
    EXPORTING
         PV_PARTNER = lv_pv_partner
         PS_CENTRAL_DATA = lv_ps_central_data
         PV_COMPANY_CODE = lv_pv_company_code
         PV_SALES_ORG = lv_pv_sales_org
         PV_DISTR_CHANNEL = lv_pv_distr_channel
         PV_DIVISION = lv_pv_division
    CHANGING
         PS_BUT000 = lv_ps_but000
         PT_KNVI = lv_pt_knvi
         PS_JGTBP00 = lv_ps_jgtbp00
         PS_JGTEUWV = lv_ps_jgteuwv
         PS_JJTVM = lv_ps_jjtvm
         PS_JGTEUWVV = lv_ps_jgteuwvv
         PS_KNA1 = lv_ps_kna1
         PS_KNB1 = lv_ps_knb1
         PT_KNB5 = lv_pt_knb5
         PS_KNVV = lv_ps_knvv
. " ISM_BP_DEFAULT_DATA_SET




ABAP code using 7.40 inline data declarations to call FM ISM_BP_DEFAULT_DATA_SET

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!