MV13NF_BBY_SETUP_COND_TARGETS 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 MV13NF_BBY_SETUP_COND_TARGETS 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!
BBY_GET_MATERIAL_BY_GROUPING CALL FUNCTION 'BBY_GET_MATERIAL_BY_GROUPING' EXPORTING ip_grpgnr = konbby_komp-bbygrpgnr TABLES et_material = lt_cond_target EXCEPTIONS no_grouping_found = 1 no_position_in_grouping = 2 * no_material = 3 * no_variant = 4 * no_merchcateg = 5 * no_material_in_merchcateg = 6 * no_promotion = 7 * no_material_in_promotion = 8 * no_layout = 9 * no_layoutarea = 10 * no_material_in_layout = 11 OTHERS = 12.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING defaultoption = 'Y' diagnosetext1 = lv_popup_text1 diagnosetext2 = lv_popup_text2 * DIAGNOSETEXT3 = ' ' textline1 = text-510 * TEXTLINE2 = ' ' titel = text-511 * START_COLUMN = 25 * START_ROW = 6 cancel_display = ' ' IMPORTING answer = lv_answer .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.