PCMASCL2 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 PCMASCL2 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 PCMASCL2
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_FEATURE_BACKFIELD CALL FUNCTION 'HR_FEATURE_BACKFIELD' EXPORTING feature = 'CLMUT' struc_content = pme04 IMPORTING back = l_back EXCEPTIONS dummy = 1 error_operation = 2 no_backvalue = 3 feature_not_generated = 4 invalid_sign_in_funid = 5 field_in_report_tab_in_pe03 = 6 OTHERS = 7.
HR_CL_READ_T7CL12 CALL FUNCTION 'HR_CL_READ_T7CL12' EXPORTING p_bukrs = wpbp-bukrs p_inscd = l_back(8) p_begda = aper-begda p_endda = aper-endda CHANGING pt_t7cl12 = it7cl12[] EXCEPTIONS no_entry_found = 1 OTHERS = 2.
HR_CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'HR_CONVERT_TO_LOCAL_CURRENCY' EXPORTING foreign_amount = p_betrg foreign_currency = p_waers local_currency = calc_currency proposed_convdate = aper-endda IMPORTING local_amount = p_betrg EXCEPTIONS no_rate_found = 1 overflow = 2 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.