RGPSC_PERIOD 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 RGPSC_PERIOD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PSC96 - PSC Period Opening
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: P_BUKRS = Company code
Selection Text: P_FRPER = From Period
Selection Text: P_FRYEAR = From Year
Selection Text: P_TOPER = To Period
Selection Text: P_TOYEAR = To Year
Title: PSC Period Management
Text Symbol: 001 = Yes
Text Symbol: 002 = No
Text Symbol: 003 = You are opening a closed period. Continue?
Text Symbol: 004 = Confirmation
Text Symbol: B01 = Organization
Text Symbol: B02 = Open periods
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = 'Confirmation'(004) TEXT_QUESTION = text-003 TEXT_BUTTON_1 = 'Yes'(001) TEXT_BUTTON_2 = 'No'(002) DEFAULT_BUTTON = '2' DISPLAY_CANCEL_BUTTON = ' ' * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = 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.