MWOSEF02 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 MWOSEF02 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!
SRS_WOSE_MDE_DOWNLOAD CALL FUNCTION 'SRS_WOSE_MDE_DOWNLOAD' TABLES p_i_t_wose_items = g_t_sl_wose_items p_i_t_wose_imkpf = i_t_wose_imkpf.
SCMS_BIN_TO_TEXT CALL FUNCTION 'SCMS_BIN_TO_TEXT' EXPORTING bin_line = cr IMPORTING text_line = i_cr EXCEPTIONS failed = 1 OTHERS = 2.
SCMS_BIN_TO_TEXT CALL FUNCTION 'SCMS_BIN_TO_TEXT' EXPORTING bin_line = lf IMPORTING text_line = i_lf EXCEPTIONS failed = 1 OTHERS = 2.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = wose_items-liefnr IMPORTING output = wose_items-liefnr.
RANGE_STRUCTURED_ARTICLE_GET CALL FUNCTION 'RANGE_STRUCTURED_ARTICLE_GET' EXPORTING st_matnr = i_st_matnr key = '200' * PRICE_KZ = 'X' xspco = 'X' TABLES bill_of_material = i_struct_material EXCEPTIONS no_head_found = 1 no_components_found = 2 no_range_found = 3 no_retail_mat = 4 no_listing_as_component = 5 no_twzla_found = 6 no_key = 7 do_nothing = 8 OTHERS = 9.
MGW0_PACKAGING_COMPONENTS CALL FUNCTION 'MGW0_PACKAGING_COMPONENTS' EXPORTING mgw0_article = g_t_sl_wose_items-matnr mgw0_date_from = sy-datlo mgw0_date_to = sy-datlo * MGW0_PLANT = ' ' mgw0_unit = g_t_sl_wose_items-weme TABLES mgw0_components = i_mat_components EXCEPTIONS not_found = 1 OTHERS = 2.
BROWSER_REDIRECT CALL FUNCTION 'BROWSER_REDIRECT' EXPORTING p_storewb_einstieg = g_storewb_einstieg.
BROWSER_REDIRECT CALL FUNCTION 'BROWSER_REDIRECT' EXPORTING p_storewb_einstieg = g_storewb_einstieg.
BROWSER_REDIRECT CALL FUNCTION 'BROWSER_REDIRECT' EXPORTING * * P_NEW_SERVICE = 'WOSM' p_storewb_einstieg = g_storewb_einstieg.
BAPI_GOODSMVT_GETDETAIL CALL FUNCTION 'BAPI_GOODSMVT_GETDETAIL' EXPORTING materialdocument = wose_imkpf-ref_blnr matdocumentyear = wose_imkpf-mjahr IMPORTING goodsmvt_header = g_t_gm_head_02 TABLES goodsmvt_items = g_t_gm_item_show return = g_t_bapiret2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.