MEBBPMASTER is a standard Executable ABAP Report 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 MEBBPMASTER 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.
Selection Text: PVURLPUT = Target for Output
Selection Text: PVRESTR = Restrict Values
Selection Text: PLANGU = Language for Texts
Text Symbol: 010 = Other Error
Text Symbol: 009 = No Units
Text Symbol: 008 = No Currencies
Text Symbol: 007 = File-Saving Error
Text Symbol: 005 = Conversion Error
Text Symbol: 004 = Actions
Text Symbol: 003 = Parameters for Mobile Units and Currencies
Text Symbol: 002 = Execute
Text Symbol: 001 = Lang.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BBP_OUTPUT_X_DOMAIN_OF_URL CALL FUNCTION 'BBP_OUTPUT_X_DOMAIN_OF_URL' EXPORTING iv_url_string = lv_file_put IMPORTING ev_domain = lv_http_put-host ev_port = lv_http_put-port ev_path = lv_http_put-path ev_file = lv_http_put-file EXCEPTIONS url_empty = 1 no_valid_url = 2 OTHERS = 3.
MEBBP_UNITS_CURRENCIES CALL FUNCTION 'MEBBP_UNITS_CURRENCIES' EXPORTING iv_langu = lv_langu iv_restrain = pvrestr is_http_put = lv_http_put EXCEPTIONS conv_failure = 1 save_failure = 2 no_currs = 3 no_units = 4 langu_failure = 5 OTHERS = 6.
MEBBP_UNITS_CURRENCIES CALL FUNCTION 'MEBBP_UNITS_CURRENCIES' EXPORTING iv_langu = lv_langu iv_restrain = pvrestr iv_file_put = lv_file_put EXCEPTIONS conv_failure = 1 save_failure = 2 no_currs = 3 no_units = 4 langu_failure = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.