SAP BAPIBUSISM007_GETDUPLICATES Function Module for IS-M: BAPI Determine Business Partner Duplicates
BAPIBUSISM007_GETDUPLICATES is a standard bapibusism007 getduplicates SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M: BAPI Determine Business Partner Duplicates 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 bapibusism007 getduplicates FM, simply by entering the name BAPIBUSISM007_GETDUPLICATES into the relevant SAP transaction such as SE37 or SE38.
Function Group: JGBP_BAPI1
Program Name: SAPLJGBP_BAPI1
Main Program: SAPLJGBP_BAPI1
Appliation area:
Release date: 21-Jun-2002
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPIBUSISM007_GETDUPLICATES 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 'BAPIBUSISM007_GETDUPLICATES'"IS-M: BAPI Determine Business Partner Duplicates.
EXPORTING
PARTNERCATEGORY = "Business Partner Category
PARTNERGROUP = "Business Partner Grouping
CENTRALDATA = "Central Data
* CENTRALDATAPERSON = "Central Data, Person
* CENTRALDATAORGANIZATION = "Central Data, Organization
* CENTRALDATAGROUP = "Central Data, Group
ADDRESS = "Address
TABLES
* RETURN = "Confirmations
* TELEFONDATA = "Telephone Numbers
* FAXDATA = "Fax Numbers
* TELETEXDATA = "Teletex Numbers
* TELEXDATA = "Telex Numbers
* E_MAILDATA = "Internet Addresses
PARTNER_LIST = "Business Partner Duplicates
IMPORTING Parameters details for BAPIBUSISM007_GETDUPLICATES
PARTNERCATEGORY - Business Partner Category
Data type: BAPIBUS1006_HEAD-PARTN_CATOptional: No
Call by Reference: No ( called with pass by value option)
PARTNERGROUP - Business Partner Grouping
Data type: BAPIBUS1006_HEAD-PARTN_GRPOptional: No
Call by Reference: No ( called with pass by value option)
CENTRALDATA - Central Data
Data type: BAPIBUSISM007_SAPGPOptional: No
Call by Reference: No ( called with pass by value option)
CENTRALDATAPERSON - Central Data, Person
Data type: BAPIBUSISM007_SAPGP_PERSONOptional: Yes
Call by Reference: No ( called with pass by value option)
CENTRALDATAORGANIZATION - Central Data, Organization
Data type: BAPIBUSISM007_SAPGP_ORGANOptional: Yes
Call by Reference: No ( called with pass by value option)
CENTRALDATAGROUP - Central Data, Group
Data type: BAPIBUSISM007_SAPGP_GROUPOptional: Yes
Call by Reference: No ( called with pass by value option)
ADDRESS - Address
Data type: BAPIBUS1006_ADDRESSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPIBUSISM007_GETDUPLICATES
RETURN - Confirmations
Data type: BAPIRET2Optional: Yes
Call by Reference: Yes
TELEFONDATA - Telephone Numbers
Data type: BAPIADTELOptional: Yes
Call by Reference: Yes
FAXDATA - Fax Numbers
Data type: BAPIADFAXOptional: Yes
Call by Reference: Yes
TELETEXDATA - Teletex Numbers
Data type: BAPIADTTXOptional: Yes
Call by Reference: Yes
TELEXDATA - Telex Numbers
Data type: BAPIADTLXOptional: Yes
Call by Reference: Yes
E_MAILDATA - Internet Addresses
Data type: BAPIADSMTPOptional: Yes
Call by Reference: Yes
PARTNER_LIST - Business Partner Duplicates
Data type: BAPIBUSISM007_NUMBERSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BAPIBUSISM007_GETDUPLICATES 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_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_partnercategory | TYPE BAPIBUS1006_HEAD-PARTN_CAT, " | |||
| lt_telefondata | TYPE STANDARD TABLE OF BAPIADTEL, " | |||
| lv_partnergroup | TYPE BAPIBUS1006_HEAD-PARTN_GRP, " | |||
| lt_faxdata | TYPE STANDARD TABLE OF BAPIADFAX, " | |||
| lv_centraldata | TYPE BAPIBUSISM007_SAPGP, " | |||
| lt_teletexdata | TYPE STANDARD TABLE OF BAPIADTTX, " | |||
| lv_centraldataperson | TYPE BAPIBUSISM007_SAPGP_PERSON, " | |||
| lt_telexdata | TYPE STANDARD TABLE OF BAPIADTLX, " | |||
| lv_centraldataorganization | TYPE BAPIBUSISM007_SAPGP_ORGAN, " | |||
| lt_e_maildata | TYPE STANDARD TABLE OF BAPIADSMTP, " | |||
| lv_centraldatagroup | TYPE BAPIBUSISM007_SAPGP_GROUP, " | |||
| lv_address | TYPE BAPIBUS1006_ADDRESS, " | |||
| lt_partner_list | TYPE STANDARD TABLE OF BAPIBUSISM007_NUMBERS. " |
|   CALL FUNCTION 'BAPIBUSISM007_GETDUPLICATES' "IS-M: BAPI Determine Business Partner Duplicates |
| EXPORTING | ||
| PARTNERCATEGORY | = lv_partnercategory | |
| PARTNERGROUP | = lv_partnergroup | |
| CENTRALDATA | = lv_centraldata | |
| CENTRALDATAPERSON | = lv_centraldataperson | |
| CENTRALDATAORGANIZATION | = lv_centraldataorganization | |
| CENTRALDATAGROUP | = lv_centraldatagroup | |
| ADDRESS | = lv_address | |
| TABLES | ||
| RETURN | = lt_return | |
| TELEFONDATA | = lt_telefondata | |
| FAXDATA | = lt_faxdata | |
| TELETEXDATA | = lt_teletexdata | |
| TELEXDATA | = lt_telexdata | |
| E_MAILDATA | = lt_e_maildata | |
| PARTNER_LIST | = lt_partner_list | |
| . " BAPIBUSISM007_GETDUPLICATES | ||
ABAP code using 7.40 inline data declarations to call FM BAPIBUSISM007_GETDUPLICATES
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 PARTN_CAT FROM BAPIBUS1006_HEAD INTO @DATA(ld_partnercategory). | ||||
| "SELECT single PARTN_GRP FROM BAPIBUS1006_HEAD INTO @DATA(ld_partnergroup). | ||||
Search for further information about these or an SAP related objects