RMCY0670 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter RMCY0670 into the relevant SAP transaction such as SE38 or SE80
* Startreport f�r die Selektion der Kundenanalyse in Ab�ngigkeit * * der Periodizit�t der Info-Struktur S001 *
REPORT .
DATA: CON_SPERI_MON LIKE TMC4-SPERI VALUE 'M', CON_SPERI_WOC LIKE TMC4-SPERI VALUE 'W', CON_SPERI_TAG LIKE TMC4-SPERI VALUE 'T', CON_SPERI_BUP LIKE TMC4-SPERI VALUE 'P'. DATA: SAV_PERI LIKE TMC4-SPERI.
PERFORM PERIODIZITAET_ERMITTELN(RMCS1000) USING 'S067' CHANGING SAV_PERI. CASE SAV_PERI. WHEN CON_SPERI_TAG. * Periodentyp = Tag * SUBMIT RMCY0671 VIA SELECTION-SCREEN. WHEN CON_SPERI_WOC. ....See full code listing within your SAP system using transactions such as SE80 and SE38
No INCLUDES are used within this report code!
No SAP database TABLES are accessed within this report code!
No SAP FUNCTION MODULES are executed within this report code!