HJPUCP_PAMNR_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 HJPUCP_PAMNR_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: Include HJPUCP_PAMNR_FORMS
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_structure_name = 'PJP_CP_PAMNR_MOD' CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = 'MOD' * i_structure_name = 'PJP_CP_PAMNR_MOD' it_fieldcat = lt_fieldcat is_layout = ls_alv_layout EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = 'ROOT' i_node_txt = lv_title i_categ_id = 'MOD' i_icon = icon_list IMPORTING e_node_key = lv_mod_node EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD_ROW CALL FUNCTION 'HR_PAL_NODE_ADD_ROW' EXPORTING i_node_key = iv_mod_node i_row_data = is_mod EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE * CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' * EXPORTING * i_structure_name = 'HRPAD_PAL_STATS_MSG_CTXT' * CHANGING * ct_fieldcat = l_fieldcat * EXCEPTIONS * inconsistent_interface = 1 * program_error = 2 * OTHERS = 3.
HR_PAL_CREATE_NODE_CATEG * CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' * EXPORTING * i_categ_id = 'STATS' * it_fieldcat = l_fieldcat * EXCEPTIONS * program_error = 1 * OTHERS = 2.
HR_PAL_NODE_ADD * CALL FUNCTION 'HR_PAL_NODE_ADD' * EXPORTING * i_relatkey = gv_mod_node * i_node_txt = text-003 * i_categ_id = 'STATS' * i_icon = icon_statistics * i_expand = 'X' * IMPORTING * e_node_key = gv_stat_node * EXCEPTIONS * program_error = 1 * OTHERS = 2.
HR_PAL_STATS_MSG_ADD * CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' * EXPORTING * i_node_key = gv_stat_node * i_stcnt = emp_proc * i_msgid = 'BL' * i_msgty = 'S' * i_msgno = '001' * i_msgv1 = text-003 * EXCEPTIONS * program_error = 1 * OTHERS = 2.
HR_PAL_LOG_DISPLAY CALL FUNCTION 'HR_PAL_LOG_DISPLAY' EXPORTING i_s_display_profile = lv_display_profile EXCEPTIONS program_error = 1 no_logs = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'PJP_CP_PAMNR_ALL' CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = 'PLAN' it_fieldcat = lt_fieldcat is_layout = ls_alv_layout EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = lv_mod_node i_node_txt = lv_title i_categ_id = 'PLAN' i_icon = icon_list IMPORTING e_node_key = lv_plan_node EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD_ROW CALL FUNCTION 'HR_PAL_NODE_ADD_ROW' EXPORTING i_node_key = lv_plan_node i_row_data = ls_pamnr_all EXCEPTIONS program_error = 1 OTHERS = 2.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING langu = sy-langu molga = lv_molga format = lc_format_kanji pp0002 = is_p0002 IMPORTING edit_name = lv_edit_name retcode = lv_subrc.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING langu = sy-langu molga = lv_molga format = lc_format_kanji_koseki pp0002 = p0002 IMPORTING edit_name = lv_edit_name retcode = lv_subrc.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' IMPORTING select_value = iv_plan TABLES fields = ihelp_fields valuetab = helptab.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = iv_pernr IMPORTING entrydate = cv_ent_date.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = iv_pernr IMPORTING entrydate = cv_ent_date.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.