MP56T_D3170_STATUS 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 MP56T_D3170_STATUS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
PTRA_TRIP_BREAK_ADD CALL FUNCTION 'PTRA_TRIP_BREAK_ADD' EXPORTING is_trip_break = ps_trip_break is_head = ls_head_perio iv_next_zikey = lv_next_zikey iv_language = sy-langu it_kmver = lt_util_kmver it_beleg = lt_util_beleg IMPORTING et_return = lt_return CHANGING ct_ziel = lt_util_ziel ct_zsplit = lt_util_zsplit EXCEPTIONS ex_error_occurred = 1 OTHERS = 2.
PTRA_TRIP_BREAK_CHECK_DATES CALL FUNCTION 'PTRA_TRIP_BREAK_CHECK_DATES' EXPORTING iv_datebeg = ps_trip_break-datebeg iv_timebeg = ps_trip_break-timebeg iv_dateend = ps_trip_break-dateend iv_timeend = ps_trip_break-timeend iv_language = sy-langu IMPORTING et_return = lt_return EXCEPTIONS ex_error_occurred = 1 OTHERS = 2.
PTRM_CALC_POSSIBLE_TB_COPIES CALL FUNCTION 'PTRM_CALC_POSSIBLE_TB_COPIES' EXPORTING iv_trip_begin_date = ptp02-datv1 iv_trip_begin_time = ptp02-uhrv1 iv_trip_end_date = ptp02-datb1 iv_trip_end_time = ptp02-uhrb1 iv_trip_break_begin_date = p_datebeg iv_trip_break_begin_time = p_timebeg iv_trip_break_end_date = p_dateend iv_trip_break_end_time = p_timeend iv_recurrence_pattern = p_recurrence_pattern IMPORTING ev_number_occurrences = p_number_occurrences.
PTRM_CALC_POSSIBLE_TB_COPIES CALL FUNCTION 'PTRM_CALC_POSSIBLE_TB_COPIES' EXPORTING iv_trip_begin_date = ptp02-datv1 iv_trip_begin_time = ptp02-uhrv1 iv_trip_end_date = ptp02-datb1 iv_trip_end_time = ptp02-uhrb1 iv_trip_break_begin_date = p_datebeg iv_trip_break_begin_time = p_timebeg iv_trip_break_end_date = p_dateend iv_trip_break_end_time = p_timeend iv_recurrence_pattern = p_recurrence_pattern IMPORTING ev_number_occurrences = p_number_occurrences.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.