BBPAT03F00 is a standard ABAP INCLUDE 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 BBPAT03F00 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.
Title: Common subroutines for creating user and maintaining user
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BBP_CHECK_VALID_EMAIL_ADDRESS CALL FUNCTION 'BBP_CHECK_VALID_EMAIL_ADDRESS' "XOL#939361 EXPORTING "XOL#939361 iv_email_address = user_data-e_mail "XOL#939361 EXCEPTIONS "XOL#939361 invalid_email_address = 1 "XOL#939361 others = 0. "XOL#939361
BBP_GETTEXT CALL FUNCTION 'BBP_GETTEXT' EXPORTING text_symbol = symbol IMPORTING text = text EXCEPTIONS not_found = 1 OTHERS = 2.
BBP_OM_FIND_MANAGERS CALL FUNCTION 'BBP_OM_FIND_MANAGERS' EXPORTING iv_stext = mgr_name TABLES et_managers = lt_managers EXCEPTIONS nothing_found = 1 OTHERS = 2.
BBP_OM_STRUC_GET_UNITS_OF_MGR CALL FUNCTION 'BBP_OM_STRUC_GET_UNITS_OF_MGR' EXPORTING iv_mgr_otype = 'US' iv_mgr_objid = approvers-mgr_id TABLES et_orgunits = lt_orgunits EXCEPTIONS nothing_found = 1 OTHERS = 2.
BBP_OM_DETERMINE_COMPANY CALL FUNCTION 'BBP_OM_DETERMINE_COMPANY' EXPORTING i_orgunit_id = approvers-orgunit_id i_partner = user_data-tpid EXCEPTIONS no_company_found = 1 "-> no common company of both attribute_company_not_found = 2 " objects no_partner_function_found = 3 no_business_partner_found = 4 OTHERS = 5.
BBP_OM_IS_HR_AVAILABLE CALL FUNCTION 'BBP_OM_IS_HR_AVAILABLE' IMPORTING ev_hr_available = lv_hr_is_available.
HR_ALEOX_GET_SETTINGS CALL FUNCTION 'HR_ALEOX_GET_SETTINGS' IMPORTING employee_via_ale = lv_aleox_employee_via_ale erp_p_bp_active = lv_aleox_erp_p_bp_active.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.