RPFIKZ_PROPTAX_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 RPFIKZ_PROPTAX_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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = p_repid TABLES selection_table = seltab EXCEPTIONS not_found = 1 no_report = 2 OTHERS = 3.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = p_gjahr * I_MONMIT = 00 i_periv = gv_periv i_poper = t_perio IMPORTING e_date = p_date EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
GLO_FAA_TD_READ_NO_DUPLICATES CALL FUNCTION 'GLO_FAA_TD_READ_NO_DUPLICATES' EXPORTING id_orgunit = proptax_asset-bukrs id_asset = proptax_asset-anln1 id_subnumber = proptax_asset-anln2 * ID_FROM_DATE = '00000101' * ID_TO_DATE = '99991231' id_structure = structure_name * IB_BYPASSING_MEMORY = ' ' * IB_SORT_DESCENDING = ' ' TABLES et_glofaatmdpndnt = glo_pt_table EXCEPTIONS not_found = 1 not_activated = 2 OTHERS = 3.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = x_variant i_save = 'A' IMPORTING e_exit = x_exit es_variant = x_variant2 EXCEPTIONS not_found = 2.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = l_arbgb msgty = msgty msgv1 = msgv1 msgv2 = msgv2 msgv3 = msgv3 msgv4 = msgv4 txtnr = msgno zeile = error_count EXCEPTIONS OTHERS = 1.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW'.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-CPROG dynumb = sy-dynnr TABLES dynpfields = LT_DYNPFIELD_TAB EXCEPTIONS OTHERS = 1 .
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING TABNAME = 'FIKZD_PT_RUNS' FIELDNAME = 'LAUFI' SEARCHHELP = 'FIKZD_PT_RUNS' SHLPPARAM = 'LAUFI' CALLBACK_PROGRAM = SY-REPID CALLBACK_FORM = 'AT_F4_CALLBACK' TABLES return_tab = LT_RETURN_TAB EXCEPTIONS FIELD_NOT_FOUND = 1 NO_HELP_FOR_FIELD = 2 INCONSISTENT_HELP = 3 NO_VALUES_FOUND = 4 OTHERS = 5 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.