PCAFVVE0 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 PCAFVVE0 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!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = l_repid i_internal_tabname = p_struc i_structure_name = p_struc * I_CLIENT_NEVER_DISPLAY = 'X' * I_INCLNAME = CHANGING ct_fieldcat = it_fieldcatalog EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
HR_PAL_TABLE_CREATE_COLUMN CALL FUNCTION 'HR_PAL_TABLE_CREATE_COLUMN' EXPORTING i_fieldname = 'TMSNAME' i_rollname = 'TEXT32' i_seltext_s = 'Fichero'(026) * I_SELTEXT_M = * I_SELTEXT_L = * I_COL_POS = * IMPORTING * ES_FIELDCAT = CHANGING it_fieldcat = l_temse_fcat EXCEPTIONS program_error = 1 OTHERS = 2 .
HR_PAL_TABLE_CREATE_COLUMN CALL FUNCTION 'HR_PAL_TABLE_CREATE_COLUMN' EXPORTING i_fieldname = 'BUKRS' i_rollname = 'BUKRS' * i_seltext_s = 'NÂș RIF'(026) * I_SELTEXT_M = * I_SELTEXT_L = * I_COL_POS = * IMPORTING * ES_FIELDCAT = CHANGING it_fieldcat = l_temse_fcat EXCEPTIONS program_error = 1 OTHERS = 2 .
HR_PAL_TABLE_CREATE_COLUMN CALL FUNCTION 'HR_PAL_TABLE_CREATE_COLUMN' EXPORTING i_fieldname = 'SUDBN' i_rollname = 'PVE_SUDBN' * i_seltext_s = * I_SELTEXT_M = * I_SELTEXT_L = * I_COL_POS = * IMPORTING * ES_FIELDCAT = CHANGING it_fieldcat = l_temse_fcat EXCEPTIONS program_error = 1 OTHERS = 2 .
HR_PAL_TABLE_CREATE_COLUMN CALL FUNCTION 'HR_PAL_TABLE_CREATE_COLUMN' EXPORTING i_fieldname = 'PUSHTMSE' i_rollname = 'BALIMSGTY' i_seltext_s = 'Vis.'(022)
HR_PAL_TABLE_CREATE_COLUMN CALL FUNCTION 'HR_PAL_TABLE_CREATE_COLUMN' EXPORTING i_fieldname = 'DOWNLOAD' i_rollname = 'BALIMSGTY' i_seltext_s = 'Down.'(027)
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = 'TEMSE' * I_STRUCTURE_NAME = 'HRPAD_PAL_TEMSE' * I_WITH_MSG_FIELDS = * I_MSG_TEXT_POS = * I_ICON_LTEXT_POS = it_fieldcat = l_temse_fcat * I_SAVE = * IS_VARIANT = * I_DEFAULT = 'X' * IT_PRINT_FCAT = is_layout = l_layout * I_S_PRINT_OPTIONS = * I_TREE_SORT = i_clbk = l_clbk EXCEPTIONS program_error = 1 OTHERS = 2 .
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = 'ROOT' i_node_txt = 'Ficheros TemSe Generados'(023) * I_NODE_LABEL = * I_LABEL_IS_QINFO = * I_ICON = * I_QUICKINFO = i_categ_id = 'TEMSE' * I_SORT_CONTEXT = * I_HEADER_NODES = * I_EXPAND = IMPORTING e_node_key = l_temse_node EXCEPTIONS program_error = 1 OTHERS = 2 .
HR_PAL_NODE_ADD_ROW CALL FUNCTION 'HR_PAL_NODE_ADD_ROW' EXPORTING i_node_key = l_temse_node i_row_data = l_temse_row EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_LOG_DISPLAY CALL FUNCTION 'HR_PAL_LOG_DISPLAY' EXPORTING i_s_display_profile = l_display_profile * I_S_FLAT_PROFILE = EXCEPTIONS program_error = 1 no_logs = 2 OTHERS = 3 .
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = l_conversion i_msgid = 'BL' i_msgty = 'S' i_msgno = '001' i_msgv1 = l_msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = l_conversion i_msgid = 'BL' i_msgty = 'E' i_msgno = '001' i_msgv1 = l_msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING nr_range_nr = lv_range_nr object = lc_object IMPORTING number = lv_number EXCEPTIONS interval_not_found = 1 number_range_not_intern = 2 object_not_found = 3 quantity_is_0 = 4 quantity_is_not_1 = 5 interval_overflow = 6 buffer_overflow = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.