RIPRCSS0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for PM: Confirmation Ticket for Individual Capacity Commitments
If you would like to execute this report or see the full code listing simply enter RIPRCSS0 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: PM: Confirmation ticket for split records
Text Symbol: 501 = LOG ERR
Text Symbol: 502 = Original
Text Symbol: 503 = Copy
Text Symbol: 504 = Delta
Text Symbol: 505 = Original/delta
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING objnr = kbedp-kbsta only_active = 'X' spras = print_language IMPORTING line = bsvz-stext EXCEPTIONS object_not_found = 01.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING element = 'ORDER_HEADER_SHORT' window = 'MAIN'.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING element = 'OPERATION_SHORT' window = 'MAIN'.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' " single text element EXPORTING " form with title element = 'CONFIRM_END_SPLIT' " built in.
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING objnr = kbedp-kbsta only_active = 'X' spras = print_language IMPORTING line = bsvz-stext EXCEPTIONS object_not_found = 01.
TZS1_CHECK_CUSTOMIZING CALL FUNCTION 'TZS1_CHECK_CUSTOMIZING' EXPORTING is_application = tzs1_appl-pm_woc IMPORTING es_activated = gv_time_zone_active EXCEPTIONS application_not_valid = 1 OTHERS = 2.
TZS1_GET_SESSION_TZON CALL FUNCTION 'TZS1_GET_SESSION_TZON' IMPORTING e_sess_tzone = cv_sess_tzone.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.