SAPDBBPF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter SAPDBBPF into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: S_ADR_D = Address ID Valid from
Selection Text: S_ROLE = Role Category
Selection Text: S_REL_TY = Relationship Category
Selection Text: S_RELDA = Start of Relationship
Selection Text: S_PART = Partner
Selection Text: S_MABER = Dunning Area
Selection Text: S_EMPL_S = Employed from
Selection Text: S_DIF_2 = 2nd Differentiation Type
Selection Text: S_DIF_1 = 1st Differentiation Type
Selection Text: S_BUSI_Y = Fiscal Year
Selection Text: S_BUKRS = Company Code
Selection Text: S_BANKS = Bank Country Key
Selection Text: S_BANKN = Bank Account Number
Selection Text: S_BANKL = Bank Key
Selection Text: S_ADR_K = Address ID
Title: Logical Database for Business Partner
Text Symbol: 001 = Business Partner
Text Symbol: 002 = Role Cat.
Text Symbol: 003 = Company Code
Text Symbol: 004 = Employed from
Text Symbol: 005 = Fiscal Year
Text Symbol: 006 = Address
Text Symbol: 007 = Relationships
Text Symbol: 008 = Basic Version with CoCd
Text Symbol: 009 = Role Data Version
Text Symbol: 010 = Bank Details
Text Symbol: 011 = Dunning Data
Text Symbol: 012 = Relationship Data Version
Text Symbol: 013 = Basic Version Without CoCd
INCLUDE DBBPFF01.
No SAP DATABASE tables are accessed within this REPORT code!
BPAR_C_PARTNER_AUTHORITY_CHECK CALL FUNCTION 'BPAR_C_PARTNER_AUTHORITY_CHECK' EXPORTING ACTVT = '01' AUTHORITY = BP000-BEGRU EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
BPAR_C_ROLETYP_AUTHORITY_CHECK CALL FUNCTION 'BPAR_C_ROLETYP_AUTHORITY_CHECK' EXPORTING ACTVT = '01' ROLETYP = BP1000-ROLETYP * tables * ROLES = * ROLES_WITH_AUTH = EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
BPAR_C_ROLE_GR_AUTHORITY_CHECK CALL FUNCTION 'BPAR_C_ROLE_GR_AUTHORITY_CHECK' EXPORTING ACTVT = '01' ROLETYP = BP1000-ROLETYP AUTHORITY = BP1000-AUTHORITY * tables * ROLES = * ROLES_WITH_AUTH = EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
BPAR_S_BPCENTRAL_PARTNER_PREP CALL FUNCTION 'BPAR_S_BPCENTRAL_PARTNER_PREP' EXPORTING DATE_IN = SY-DATUM * DYNPRO_IN = '0100' * FUNCTION = ' ' * GROUP_ID = ' ' * partner_in = bp000 * ROLETYP = ' ' * NO_DISPL_IF_ONE = 'X' IMPORTING * ADDRESS_OUT = * ADRBEZ_OUT = * OKCODE_OUT = PARTNER_OUT = L_BP000 * CUSTOMER_OUT = * TABLES ** ranges_in = EXCEPTIONS NO_PARTNER_SELECTED = 1 PARTNER_NOT_FOUND = 2 PARTNER_ROLE_NOT_FOUND = 3 OTHERS = 4.
BPAR_S_BPCENTRAL_PARTNER_PREP CALL FUNCTION 'BPAR_S_BPCENTRAL_PARTNER_PREP' EXPORTING DATE_IN = SY-DATUM * DYNPRO_IN = '0100' * FUNCTION = ' ' * GROUP_ID = ' ' * partner_in = bp000 * ROLETYP = ' ' * NO_DISPL_IF_ONE = 'X' IMPORTING * ADDRESS_OUT = * ADRBEZ_OUT = * OKCODE_OUT = PARTNER_OUT = L_BP000 * CUSTOMER_OUT = * TABLES ** ranges_in = EXCEPTIONS NO_PARTNER_SELECTED = 1 PARTNER_NOT_FOUND = 2 PARTNER_ROLE_NOT_FOUND = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.