REXCSKTAXPOST is a standard Executable ABAP Report 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 REXCSKTAXPOST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
REXCSKPTPO - Property Tax Posting (Slovakia)
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.
Selection Text: SO_SPRAV = D .
Selection Text: P_ZTERM = D .
Selection Text: P_ZLSCH = D .
Selection Text: P_ZFBDT = D .
Selection Text: P_XBLNR = D .
Selection Text: P_SGTXT = D .
Selection Text: P_POPER = D .
Selection Text: P_MAPN = D .
Selection Text: P_IMMED = D .
Selection Text: P_GJAHR = D .
Selection Text: P_BUZEI = D .
Selection Text: P_BUKRS = D .
Selection Text: P_BUDAT = D .
Selection Text: P_BLDAT = D .
Selection Text: P_2KROK = Liabilities to Tax Admin.
Selection Text: P_1KROK = Costs
Title: Property Tax Posting (Slovakia)
Text Symbol: B02 = Posting Parameters
Text Symbol: B01 = General Selections
Text Symbol: 153 = Property Tax Posting
Text Symbol: 152 = Immediate run of posting.
Text Symbol: 151 = Really run ?
Text Symbol: 132 = Prop.Tax, Municip.
Text Symbol: 131 = Prop.Tax, Costs
Text Symbol: 016 = Accounting Documents
Text Symbol: 015 = Proposal
Text Symbol: 011 = Liabilities
Text Symbol: 010 = Costs
Text Symbol: 009 = Posting Type
Text Symbol: 002 = Accounting Document: Items
Text Symbol: 001 = Accounting Document: Header
INCLUDE REXCSKTAXPOSTT.
INCLUDE REXCSKTAXPOSTC.
INCLUDE REXCSKTAXPOSTMAC.
No SAP DATABASE tables are accessed within this REPORT code!
POSTING_INTERFACE_START CALL FUNCTION 'POSTING_INTERFACE_START' EXPORTING i_function = 'B' i_group = p_mapn i_keep = 'X' i_user = sy-uname.
POPUP_TO_CONFIRM_WITH_VALUE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE' "#EC FB_OLDED EXPORTING defaultoption = 'N' objectvalue = text-151 text_before = text-152 titel = text-153 IMPORTING answer = l_dotaz EXCEPTIONS text_too_long = 1.
POSTING_INTERFACE_END CALL FUNCTION 'POSTING_INTERFACE_END' EXPORTING i_bdcimmed = p_immed.
POSTING_INTERFACE_DOCUMENT CALL FUNCTION 'POSTING_INTERFACE_DOCUMENT' EXPORTING i_tcode = 'FB01' IMPORTING e_msgid = l_msgid e_msgno = l_msgno e_msgty = l_msgty e_msgv1 = l_msgv1 e_msgv2 = l_msgv2 e_msgv3 = l_msgv3 e_msgv4 = l_msgv4 e_subrc = l_subrc TABLES t_blntab = l_blntab t_ftpost = gt_ftpost t_fttax = l_fttax.
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = l_gjahr i_periv = gs_ucok-periv i_poper = l_poper IMPORTING e_date = l_date-first.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = l_gjahr i_periv = gs_ucok-periv i_poper = l_poper IMPORTING e_date = l_date-last.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.