MSWUBF02 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 MSWUBF02 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 MSWUBF02
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RFC_MODIFY_L_DESTINATION CALL FUNCTION 'RFC_MODIFY_L_DESTINATION' EXPORTING destination = l_rfc_dest action = 'M' user = user password = password passwordscr = 'X' description = text-003 client = sy-mandt destlock = 'X' authority_check = space rfcunicode = l_rfcunicode EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 OTHERS = 8.
SWA_MESSAGE_STORE CALL FUNCTION 'SWA_MESSAGE_STORE': EXPORTING arbgb = 'WZ' msgty = 'E' msgv1 = msgv1 txtnr = '101' EXCEPTIONS OTHERS = 1,
EXPORTING arbgb = l_sy-msgid msgty = l_sy-msgty msgv1 = l_sy-msgv1 msgv2 = l_sy-msgv2 msgv3 = l_sy-msgv3 msgv4 = l_sy-msgv4 txtnr = l_sy-msgno EXCEPTIONS OTHERS = 1.
RFC_PING CALL FUNCTION 'RFC_PING' DESTINATION l_rfc_dest.
SWU_PING CALL FUNCTION 'SWU_PING' DESTINATION l_rfc_dest EXCEPTIONS OTHERS = 1.
RFC_MODIFY_L_DESTINATION CALL FUNCTION 'RFC_MODIFY_L_DESTINATION' EXPORTING destination = l_rfc_dest action = 'D' "Delete authority_check = space rfcunicode = l_rfcunicode EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 OTHERS = 8.
SUSR_RFC_USER_INTERFACE CALL FUNCTION 'SUSR_RFC_USER_INTERFACE' EXPORTING user = userid activity = '03' IMPORTING user_group = user_group valid_from = valid_from valid_until = valid_until login_date = last_login user_type = user_type ext_name = ext_name account = account TABLES user_defaults = user_defaults user_address = user_address user_parameters = user_parameters user_profiles = user_profiles EXCEPTIONS user_dont_exist = 1 user_allready_exists = 2 not_authorized = 3 username_required = 4 bad_method = 5 password_required = 6 usergroup_dont_exist = 7 bad_time_rage = 8 bad_usertype = 9 update_error = 10 OTHERS = 11.
RFC_READ_L_DESTINATION CALL FUNCTION 'RFC_READ_L_DESTINATION' EXPORTING destination = destination authority_check = ' ' IMPORTING reference = reference trace = trace language = language client = client user = user passwordscr = passwordscr description = description gwhost = gwhost gwservice = gwservice EXCEPTIONS authority_not_available = 1 destination_not_exist = 2 information_failure = 3 internal_failure = 4 OTHERS = 5.
SUSR_RFC_USER_INTERFACE CALL FUNCTION 'SUSR_RFC_USER_INTERFACE' EXPORTING user = userid password = l_password activity = '02' user_group = user_group valid_from = valid_from valid_until = valid_until user_type = user_type ext_name = ext_name account = account TABLES user_defaults = user_defaults user_address = user_address user_parameters = user_parameters user_profiles = user_profiles EXCEPTIONS user_dont_exist = 1 user_allready_exists = 2 not_authorized = 3 username_required = 4 bad_method = 5 password_required = 6 usergroup_dont_exist = 7 bad_time_rage = 8 bad_usertype = 9 update_error = 10 OTHERS = 11.
RFC_MODIFY_L_DESTINATION CALL FUNCTION 'RFC_MODIFY_L_DESTINATION' EXPORTING destination = destination action = 'M' authority_check = space reference = reference trace = trace language = language client = client user = userid password = password passwordscr = passwordscr description = description * gwhost = gwhost * gwservice = gwservice destcopy = ' ' destlock = 'X' dequeue_synchron = 'X' rfcunicode = l_rfcunicode EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.