724_1516_FUNCTIONS 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 724_1516_FUNCTIONS 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.
INCLUDE RHPMCONST.
INCLUDE MP0724_CLASS.
No SAP DATABASE tables are accessed within this REPORT code!
HRFPM_ENC_PER_SELECT CALL FUNCTION 'HRFPM_ENC_PER_SELECT' EXPORTING pt_enc_iv = pt_enc_iv CHANGING p_index = p_index p_act_enc_iv = ls_act_enc_iv.
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' EXPORTING ask_plvar_dialog = ' ' IMPORTING act_plvar = p_plvar EXCEPTIONS no_active_plvar = 01 OTHERS = 02.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'HRFPM_FPM_POS_ALV' CHANGING ct_fieldcat = it_fieldcatalog EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_employee info = 'Person'(per) add_stdinf = ' ' IMPORTING RESULT = wa_fpm_pos-otype_dp_icon EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_position_hr info = 'Planstelle'(pls) add_stdinf = ' ' IMPORTING RESULT = wa_fpm_pos-otype_dp_icon EXCEPTIONS OTHERS = 0.
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' IMPORTING act_plvar = active_plvar EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_REFRESH' "'ICON_MESSAGE_WARNING_SMALL' info = 'Vorgeme9rkt zur Neufinanzierung'(008) add_stdinf = ' ' IMPORTING RESULT = icon EXCEPTIONS OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.