PCTMSEIN0 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 PCTMSEIN0 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: Include PCTMSEIN0
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSTS_OPEN_RLC call function 'RSTS_OPEN_RLC' EXPORTING name = rem_tsobj prom = 'I' EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 no_object = 5 no_permission = 6 enq_foreign_lock = 7 enq_sys_fail = 8 enq_other = 9 others = 10.
RSTS_READ call function 'RSTS_READ' IMPORTING alldata = sw_alldata TABLES datatab = temsedata EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 others = 5.
RSTS_CLOSE call function 'RSTS_CLOSE' * EXPORTING * FBHANDLE = 0 * EXCEPTIONS * FB_CALL_HANDLE = 1 * FB_ERROR = 2 * FB_RSTS_OTHER = 3 * OTHERS = 4 .
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = 'HINUTMSE' i_internal_tabname = 'DISPLAY_TAB' i_inclname = 'PCTMSEIN1' CHANGING ct_fieldcat = fieldcat[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = REPID i_callback_top_of_page = 'TOP_OF_PAGE' it_fieldcat = fieldcat[] I_CALLBACK_PF_STATUS_SET = 'SET_STATUS' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' IT_EXCLUDING = EXTAB[] * it_events = gt_events[] * I_CALLBACK_END_OF_PAGE = 'END_OF_PAGE' TABLES t_outtab = display_tab EXCEPTIONS program_error = 1 OTHERS = 2.
HR_IN_CHK_MULTI_F16 CALL FUNCTION 'HR_IN_CHK_MULTI_F16' EXPORTING RUNDATE = pbegda IMPORTING MULTIPLE_F16 = multiple_f16 * MF16_START_DT = .
RP_HIRE_FIRE CALL FUNCTION 'RP_HIRE_FIRE' EXPORTING BEG = F16_BEGDA END = F16_ENDDA IMPORTING FIRE_DATE = FIRE_DATE * HIRE_DATE = TABLES PPHIFI = PHIFI PP0000 = P0000 PP0001 = TEMP_P0001.
REUSE_ALV_COMMENTARY_WRITE call function 'REUSE_ALV_COMMENTARY_WRITE' exporting * I_LOGO = 'ENJOYSAP_LOGO' it_list_commentary = gt_list_top_of_page.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING FILENAME = pathname FILETYPE = ftype WRITE_FIELD_SEPARATOR = 'X' TABLES DATA_TAB = txt_tab EXCEPTIONS FILE_WRITE_ERROR = 1.
WS_FILENAME_GET call function 'WS_FILENAME_GET' EXPORTING def_filename = tmp_filename def_path = $pathname mask = ',*.*,*.*.'
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.