BBPAT04F01 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 BBPAT04F01 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: Include BBPAT04F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_USER_EXISTENCE_CHECK CALL FUNCTION 'BAPI_USER_EXISTENCE_CHECK' EXPORTING username = bapiname "#EC * IMPORTING return = return.
BBP_GET_USER * CALL FUNCTION 'BBP_GET_USER' * EXPORTING * USERID = BBP_USR01-USERID * USER_TYPE = 'B2B_USER' * IMPORTING * USERDATA = BBP_USR * EXCEPTIONS * USER_NOT_FOUND = 1 * OTHERS = 2 * .
BBP_USER_GET_BY_EMAIL CALL FUNCTION 'BBP_USER_GET_BY_EMAIL' EXPORTING e_mail = bbp_usr01-e_mail IMPORTING user = userid EXCEPTIONS no_user_found = 1 user_not_unique = 2 OTHERS = 3.
BBP_GET_USER_CUSTOMIZING CALL FUNCTION 'BBP_GET_USER_CUSTOMIZING' IMPORTING custom_data = custom_data.
BBP_CHANGE_PASSWORD * CALL FUNCTION 'BBP_CHANGE_PASSWORD' * EXPORTING * USERID = BBP_USR01-USERID * PASSWORD = BBP_USR01-PASSWORD * EXCEPTIONS * ERROR_CHANGE_PASSWORD = 1 * OTHERS = 2 * .
BBP_GENERATE_PASSW_MAIL CALL FUNCTION 'BBP_GENERATE_PASSW_MAIL' EXPORTING requester = user_mail.
BBP_GET_USER_PIDS * CALL FUNCTION 'BBP_GET_USER_PIDS' * EXPORTING * USER_ID = NODE_NO * PARAMETER_ID = 'BBP_ORG' * TABLES * PIDLIST = PIDLIST * EXCEPTIONS * ERROR_GET_PIDS = 1 * OTHERS = 2.
SWC_ELEMENT_SET * CALL FUNCTION 'SWC_ELEMENT_SET' * EXPORTING * ELEMENT = 'ORGUNIT' * FIELD = ACT_ORGUNIT * TABLES * CONTAINER = EVT_CONTAINER * EXCEPTIONS * OTHERS = 1.
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' IMPORTING act_plvar = l_plvar EXCEPTIONS no_active_plvar = 1 OTHERS = 2.
RH_GET_ORG_ASSIGNMENT CALL FUNCTION 'RH_GET_ORG_ASSIGNMENT' EXPORTING i77pr = p_dummy uname = l_uname TABLES obj_tab = obj_tab.
SWE_EVENT_CREATE CALL FUNCTION 'SWE_EVENT_CREATE' EXPORTING objtype = 'BUS4101' objkey = object_key event = 'NEWPASSWORD' TABLES event_container = evt_container EXCEPTIONS objtype_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.