RSSCPRN2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create appointment lists with optional send mail Create lists of appointments of selected users, separately and/or combined, with or without sending a mail, in the foreground or background...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSSCPRN2 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.
Selection Text: LANDSC = Landscape Format
Selection Text: SEL_01 = Date
Selection Text: SEL_02 = send mail
Selection Text: SEL_03 = no mail
Selection Text: SEL_04 = Mail recipient
Title: Create Appointment List with Optional Send Mail
Text Symbol: 001 = App. list from
Text Symbol: 002 = To
Text Symbol: 003 = Generated by
Text Symbol: 004 = Name
Text Symbol: 005 = SO_OBJECT_SEND call error
Text Symbol: 006 = App. list
Text Symbol: 007 = Description
Text Symbol: 008 = Room
Text Symbol: 009 = of
Text Symbol: 010 = Block width too big
Text Symbol: 011 = SELECT_OPTIONS_RESTRICT call error
Text Symbol: 012 = No appointment found in specified period
Text Symbol: 013 = Calendar sel.
Text Symbol: 014 = Complete List
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SELECT_OPTIONS_RESTRICT call function 'SELECT_OPTIONS_RESTRICT' exporting restriction = restrict exceptions others = 1.
SO_NAME_CHECK call function 'SO_NAME_CHECK' exporting full_name = ownerdl-fullname * TYPE = ' ' * NO_DIALOG = ' ' no_address = 'X' single_selection = 'X' * OWNER = ' ' * NO_DLI = ' ' * OLD_ADDRESS = ' ' * OLD_TYPE = ' ' * NO_AUTHORITY_CHECK = ' ' tables names = names exceptions others = 1.
DAY_COVERING_GET call function 'DAY_COVERING_GET' exporting date_from = sel_01-low date_to = sel_01-high tables appointments = appointments dominants = dominants owner_or_distr_list = ownerdl exceptions others = 1.
SO_OBJECT_SEND call function 'SO_OBJECT_SEND' exporting object_hd_change = object_hd_change object_type = 'RAW' tables objcont = objcont receivers = receivers exceptions others = 1.
SO_OBJECT_SEND call function 'SO_OBJECT_SEND' exporting object_hd_change = object_hd_change object_type = 'RAW' tables objcont = objcont receivers = receivers exceptions others = 1.
SO_NAME_CONVERT call function 'SO_NAME_CONVERT' exporting name_in = name_in importing name_out = name_out exceptions others = 1.
SO_OBJECT_SEND call function 'SO_OBJECT_SEND' exporting object_hd_change = object_hd_change object_type = 'RAW' outbox_flag = space tables objcont = objcont receivers = receivers exceptions others = 1.
SO_OBJECT_SEND call function 'SO_OBJECT_SEND' exporting object_hd_change = object_hd_change object_type = 'RAW' outbox_flag = space tables objcont = objcont receivers = receivers exceptions others = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.