HPHRTAXL 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 HPHRTAXL 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: ALV Include
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = G_HEADER.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = G_HEADER1.
REUSE_ALV_GRID_DISPLAY * CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' * EXPORTING * I_CALLBACK_PROGRAM = G_REPID * IS_LAYOUT = GS_LAYOUT1 * IT_FIELDCAT = GT_FIELDCAT1[] * IT_SORT = GT_SORT * I_SAVE = G_SAVE * IT_EVENTS = G_EVENTS1 * IS_PRINT = G_PRINT * TABLES * T_OUTTAB = GT_OUTSEL * EXCEPTIONS * PROGRAM_ERROR = 1 * OTHERS = 2 * .
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = ' ' * I_BUFFER_ACTIVE = ' ' I_CALLBACK_PROGRAM = G_REPID * I_CALLBACK_PF_STATUS_SET = * I_CALLBACK_USER_COMMAND = G_USER_COMMAND * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = 'HTML_TOP_OF_PAGE_INFO' * I_CALLBACK_HTML_END_OF_LIST = * I_STRUCTURE_NAME = * I_BACKGROUND_ID = * I_GRID_TITLE = I_GRID_SETTINGS = gs_grid_settings "AAL9CK111905 IS_LAYOUT = GS_LAYOUT1 IT_FIELDCAT = GT_FIELDCAT1[] * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = I_SAVE = 'A' * IS_VARIANT = G_VARIANT IT_EVENTS = G_EVENTS1 * IT_EVENT_EXIT = alv_std_toolbar IS_PRINT = G_PRINT * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IT_ALV_GRAPHICS = * IT_HYPERLINK = * IT_ADD_FIELDCAT = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB = GT_OUTSEL EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.