PCMASSI1_FUSITST 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 PCMASSI1_FUSITST 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 PCMASSI1_FUSITST
INCLUDE PCMASSI1_FUSITST02.
No SAP DATABASE tables are accessed within this REPORT code!
RP_HIRE_FIRE * CALL FUNCTION 'RP_HIRE_FIRE' * EXPORTING * beg = low-date * end = aper-endda * TABLES * pp0000 = p0000 "input * pp0001 = p0001 "input * pphifi = hifik. "output
HR_SI_DATE CALL FUNCTION 'HR_SI_DATE' EXPORTING date = aper-chkdt deltamonths = ofset mode = 'F' IMPORTING dateout = xdate.
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING persnr = pernr-pernr TABLES in_rgdir = xrgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
HR_SI_DATE CALL FUNCTION 'HR_SI_DATE' EXPORTING date = aper-chkdt deltamonths = i mode = 'F' IMPORTING dateout = beg.
HR_CONVERT_CURRENCY_RESULT CALL FUNCTION 'HR_CONVERT_CURRENCY_RESULT' EXPORTING country_grouping = calcmolga * conversion_date = oversc-fpend "JD 08/2006 conversion_date = aper-endda "JD 08/2006 foreign_currency = old_currency local_currency = calc_currency TABLES result_table = ort EXCEPTIONS invalid_wagetype = 1 error_conversion = 2 OTHERS = 3.
HR_CONVERT_CURRENCY_RESULT_SI CALL FUNCTION 'HR_CONVERT_CURRENCY_RESULT_SI' EXPORTING country_grouping = calcmolga * conversion_date = oversc-fpend "JD 08/2006 conversion_date = aper-endda "JD 08/2006 foreign_currency = oversc-waers local_currency = calc_currency TABLES result_table = ort EXCEPTIONS invalid_wagetype = 1 error_conversion = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.