USC_CONTACT_BATCHF01 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 USC_CONTACT_BATCHF01 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
USC_LOG_INIT CALL FUNCTION 'USC_LOG_INIT' EXPORTING i_object = gc_log_object_contact i_subobject = gc_log_subobj_batch * I_EXTNUMBER = i_new_log = 'X' IMPORTING e_log_handle = e_log_handle.
USC_LOG_MSG_ADD CALL FUNCTION 'USC_LOG_MSG_ADD' EXPORTING i_log_handle = i_log_handle i_msg = ls_msg IMPORTING e_subrc = l_subrc.
USC_LOG_DB_SAVE CALL FUNCTION 'USC_LOG_DB_SAVE' EXPORTING i_log_handle = e_log_handle IMPORTING e_subrc = l_subrc.
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = e_log_handle EXCEPTIONS OTHERS = 0.
USC_LOG_DISPLAY_FULLSCREEN CALL FUNCTION 'USC_LOG_DISPLAY_FULLSCREEN' EXPORTING i_log_handle = i_log_handle i_amodal = space.
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = i_log_handle EXCEPTIONS OTHERS = 0.
SKWF_PKG_IOS_GET CALL FUNCTION 'SKWF_PKG_IOS_GET' EXPORTING package_id = l_pkgid TABLES ios = lt_ios properties_result = lt_properties.
SKWF_FOLDER_SUB_IOS_GET CALL FUNCTION 'SKWF_FOLDER_SUB_IOS_GET' EXPORTING folder = l_io io_type = gc_objtype_loio TABLES ios = lt_ios properties_result = lt_properties.
USC_MAILPROVIDERS_READ CALL FUNCTION 'USC_MAILPROVIDERS_READ' IMPORTING e_deflt_provider = p_provid EXCEPTIONS OTHERS = 0.
USC_LOIO_COPY_WITH_CONTEXT CALL FUNCTION 'USC_LOIO_COPY_WITH_CONTEXT' EXPORTING i_loio = l_template_io i_with_phios = gc_true IMPORTING e_new_loio = l_new_main_doc_io EXCEPTIONS bad_loio_class = 1 loio_not_exist = 2 skwf_error = 3 OTHERS = 4.
USC_MAIL_SEND_OPTIONS_SET CALL FUNCTION 'USC_MAIL_SEND_OPTIONS_SET' EXPORTING i_cont_category = gc_cont_categ_email i_dark = gc_true IMPORTING es_send_options = es_send_options EXCEPTIONS error = 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.