LFPTXF02 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 LFPTXF02 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!
RFC_CALCULATE_TAXES_DOC CALL FUNCTION 'RFC_CALCULATE_TAXES_DOC' DESTINATION l_ttxd-rfcdest EXPORTING i_sap_control_data = l_sap_control_data i_tax_cal_head_in = l_cal_head_in IMPORTING o_ext_control_data = l_ext_control_data o_com_err_doc = l_com_err_doc TABLES i_tax_cal_item_in = lt_cal_item_in_s o_tax_cal_item_out = lt_cal_item_out o_tax_cal_jur_level_out = lt_cal_level_out EXCEPTIONS system_failure = 1 communication_failure = 2.
RFC_UPDATE_TAXES_DOC CALL FUNCTION 'RFC_UPDATE_TAXES_DOC' DESTINATION l_ttxd-rfcdest EXPORTING i_sap_control_data = l_sap_control_data i_tax_upd_head_in = l_upd_head_in IMPORTING o_ext_control_data = l_ext_control_data o_com_err_doc = l_com_err_doc TABLES i_tax_upd_item_in = lt_upd_item_in EXCEPTIONS system_failure = 1 communication_failure = 2.
RFC_FORCE_TAXES_DOC CALL FUNCTION 'RFC_FORCE_TAXES_DOC' DESTINATION l_ttxd-rfcdest EXPORTING i_sap_control_data = l_sap_control_data i_tax_frc_head_in = l_frc_head_in IMPORTING o_ext_control_data = l_ext_control_data o_com_err_doc = l_com_err_doc TABLES i_tax_frc_item_in = lt_frc_item_in i_tax_frc_jur_level_in = lt_frc_level_in EXCEPTIONS system_failure = 1 communication_failure = 2.
FKK_GET_APPLICATION CALL FUNCTION 'FKK_GET_APPLICATION' IMPORTING e_applk = l_applk.
FKK_ACCOUNT_DETERMINE CALL FUNCTION 'FKK_ACCOUNT_DETERMINE' EXPORTING i_tfk033d = l_tfk033d IMPORTING e_tfk033d = l_tfk033d EXCEPTIONS error_in_input_data = 1 nothing_found = 2 OTHERS = 3.
FKK_ACCOUNT_DETERMINE_0018 CALL FUNCTION 'FKK_ACCOUNT_DETERMINE_0018'.
FKK_GET_APPLICATION CALL FUNCTION 'FKK_GET_APPLICATION' IMPORTING e_applk = lv_applk EXCEPTIONS no_appl_selected = 1 OTHERS = 2.
FKK_FUNC_MODULE_DETERMINE CALL FUNCTION 'FKK_FUNC_MODULE_DETERMINE' EXPORTING i_applk = lv_applk i_fbeve = '0178' TABLES t_fbstab = lt_fbstab_0178.
FKK_SAMPLE_0178 CALL FUNCTION 'FKK_SAMPLE_0178'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.