SAP Reports / Programs

RSSC_DEMO_FREE_BUSY SAP ABAP Report - Demo program for Free/Busy analysis over the Internet







RSSC_DEMO_FREE_BUSY 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 RSSC_DEMO_FREE_BUSY into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSSC_DEMO_FREE_BUSY. "Basic submit
SUBMIT RSSC_DEMO_FREE_BUSY AND RETURN. "Return to original report after report execution complete
SUBMIT RSSC_DEMO_FREE_BUSY VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: DATEFROM = Selection start date
Selection Text: DATETO = selection end date
Selection Text: PART = Participants
Title: Demo program for Free/Busy analysis over the Internet


INCLUDES used within this REPORT RSSC_DEMO_FREE_BUSY

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

SO_NAMES_FIND CALL FUNCTION 'SO_NAMES_FIND' EXPORTING SINGLE_SELECTION = 'X' user = user * INTERNAL = 'X' * EXTERNAL = 'X' * USE = ' ' * SUPPRESS_DIALOG = ' ' IMPORTING F_CANCELLED = canceled tables user_tab = user_tab EXCEPTIONS PARAMETER_ERROR = 1 USER_NOT_EXIST = 2 X_ERROR = 3 NOT_ASSOCIATED_TO_SAPOFFICE = 4 OTHERS = 5 .

SUSR_USER_LOGONDATA_GET CALL FUNCTION 'SUSR_USER_LOGONDATA_GET' EXPORTING user_name = sy-uname IMPORTING user_logondata = logon_data EXCEPTIONS user_name_not_exist = 1 OTHERS = 2.

SC_ORGANIZER CALL FUNCTION 'SC_ORGANIZER' EXPORTING OWNER_FOR_VIEW_SETTINGS = SY-UNAME FOCUS_DATE = datefrom * VIEW = 0 TABLES PART_LIST = part_tab * ORGAN_LIST = .

DAY_COVERING_GET * CALL FUNCTION 'DAY_COVERING_GET' * EXPORTING * date_from = datefrom * date_to = dateto * TIMEZONE = logon_data-tzone ** FILTER = * NO_CALENDAR_AUTHORITY_CHECK = 'X' ** CHECK_ALL_SYSTEMS = ' ' ** IMPORTING ** LOCAL_SELECTION = * TABLES * APPOINTMENTS = appointments ** DOMINANTS = ** APPOINTMENTS_PATTERN = ** BODY_LIST = ** BODY_PKLIST = * OWNER_OR_DISTR_LIST = part_tab ** ORGAN_OR_DISTR_LIST = ** RELATED_APPLICATION_OBJECTS = * EXCEPTIONS * DATE_HAS_INVALID_FORMAT = 1 * DATE_INCONSISTENCY = 2 * OTHERS = 3 * .



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSSC_DEMO_FREE_BUSY or its description.