MSM_GRAPH_MONITOR_FORMS is a standard ABAP INCLUDE 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 MSM_GRAPH_MONITOR_FORMS 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: General forms
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MSM_GRAPH_FUNCTION_DISPATCH call function 'MSM_GRAPH_FUNCTION_DISPATCH' exporting command = command_tmp importing funcname = funcname_tmp exceptions function_not_found = 1 others = 2.
READ_WORKLOAD call function 'READ_WORKLOAD' exporting start_date = start_date end_date = end_date tables persons = persons_tmp workload = right_hand.
MSM_GRAPH_JOBS call function 'MSM_GRAPH_JOBS' exporting ocx_flag = 'X' display_only = ' ' graphic_profile = graphic_profile_tmp * TIME_TYPE = 'A' start_date = start_date end_date = end_date left_hand_header = text-001 right_hand_header = text-002 zoomfactor_past = monitor_parms-backlog_factor zoomfactor_future = monitor_parms-period_factor time_interval = monitor_parms-time_interval selection_mode = '0' workcenter_id = workcenter_global-objid external_schedule = monitor_parms-extern tables left_hand = left_hand right_hand = right_hand time_list = time_list exceptions no_left_hand_tab_entries = 1 others = 2.
CR_WORKSTATION_CHECK call function 'CR_WORKSTATION_CHECK' exporting arbpl = workcenter werks = plant importing arbid = arbid exceptions not_found = 1 others = 2.
COI2_PERSON_OF_WORKCENTER call function 'COI2_PERSON_OF_WORKCENTER' exporting begda = start endda = ende tables in_object = in_objects out_persons = persons_tmp exceptions no_person_found = 1 invalid_object = 2 invalid_hr_planning_variant = 3 other_error = 4 others = 5.
HR_PERSON_OF_WORKCENTER_GET * CALL FUNCTION 'HR_PERSON_OF_WORKCENTER_GET' * EXPORTING * BEGIN_DATE = START * END_DATE = ENDE * WITH_NAMES = 'X' * TABLES * PERSONS = PERSONS_TMP * HR_OBJECTS = hr_OBJECTS * EXCEPTIONS * NO_PERSONS_FOUND = 1 * INVALID_PLVAR = 2 * INVALID_ARBPL = 3 * OTHERS = 4.
COI2_PERSON_HRTIMEINFO call function 'COI2_PERSON_HRTIMEINFO' exporting begda = start endda = ende_tmp tables pernrtable = pernrtable time_list = pers_time_list_tmp exceptions error_work_schedul = 1 error_infty = 2 error_permission_infty = 3 error_break = 4 error_nopersons = 5 others = 6.
DATE_TIME_CONVERT call function 'DATE_TIME_CONVERT' exporting date = sy-datlo time = sy-timlo importing point_in_time = act_time_tmp exceptions date_before_rel_date = 1 date_to_big = 2 others = 3.
POINT_IN_TIME_CONVERT call function 'POINT_IN_TIME_CONVERT' exporting point_in_time = start_time_tmp importing date = start_date time = start_time.
POINT_IN_TIME_CONVERT call function 'POINT_IN_TIME_CONVERT' exporting point_in_time = end_time_tmp importing date = end_date time = end_time.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.