PLSIFKR0 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 PLSIFKR0 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 PLSIFKR0
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM'.
HR_DISPLAY_BASIC_LIST call function 'HR_DISPLAY_BASIC_LIST' exporting basic_list_title = text-001 FILE_NAME = 'HKRLSILOS' head_line1 = text-002 head_line2 = headline * foot_note1 = ' ' * foot_note2 = ' ' * foot_note3 = ' ' * lay_out = 0 * dyn_pushbutton_text1 = * dyn_pushbutton_text2 = * dyn_pushbutton_text3 = * dyn_pushbutton_text4 = * dyn_pushbutton_text5 = * dyn_pushbutton_text6 = * data_structure = ' ' * head_line3 = ' ' * head_line4 = ' ' CURRENT_REPORT = 'HKRLSILOS' * list_level = ' ' * addtional_options = ' ' * word_document = importing return_code = retcode tables DATA_TAB = SI_LIST fieldname_tab = fieldnames * select_tab = error_tab = error_tab exceptions download_problem = 1 no_data_tab_entries = 2 table_mismatch = 3 print_problems = 4 others = 5.
HR_KR_BUSINESSPLACE_GET_DATA CALL FUNCTION 'HR_KR_BUSINESSPLACE_GET_DATA' EXPORTING PERS_AREA = P_T7KR0P_WERKS PERS_SUBAREA = P_T7KR0P_BTRTL MODE = MODE IMPORTING BUS_PLACE_DETAIL = BUS_PLACE PENSION_INS_NUM = NP_BPNUM * EMPLOYMENT_INS_NUM = MEDICAL_INS_NUM = MI_BPNUM EXCEPTIONS NO_COMPANY_CODE_FOR_PERS_AREA = 1 NO_BUSPLACE_FOR_SUBAREA = 2 NO_MED_INS_ASSOC_FOR_SUBAREA = 3 NO_REP_BUSPLACE_FOR_MI_ASSOC = 4 NO_ENTRY_T7KRBP_FOR_BUPLA = 5 NO_BUSINESSPLACE_DATA = 6 ILLEGAL_MODE = 7 * OTHERS = 8 .
HR_KR_GET_SI_STANDARD_COMP CALL FUNCTION 'HR_KR_GET_SI_STANDARD_COMP' EXPORTING SUBTY = $SUBTYPE DATE = $BEGDA MONTH_COMP_AMT = $SIMCA * GRADE_IN = IMPORTING STAND_COMP = SI_MSC * SI_GRADE_TAB_LINE = GRADE = SI_GRADE EXCEPTIONS NO_ENTRY_FOR_GRADE = 1 NO_ENTRY_FOR_DATE = 2 NO_ENTRY_FOR_AMOUNT = 3 NO_INPUT = 4 GRADE_GT_9999 = 5 OTHERS = 6 .
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING PP0002 = P0002 MOLGA = '41' LANGU = SY-LANGU FORMAT = $$FORMAT IMPORTING EDIT_NAME = CNAME RETCODE = RET-CODE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.