SAP FI_TAX_INDICATOR_CHECK Function Module for
FI_TAX_INDICATOR_CHECK is a standard fi tax indicator check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fi tax indicator check FM, simply by entering the name FI_TAX_INDICATOR_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: TAX1
Program Name: SAPLTAX1
Main Program: SAPLTAX1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FI_TAX_INDICATOR_CHECK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FI_TAX_INDICATOR_CHECK'".
EXPORTING
I_BUKRS = "Company Code
I_HKONT = "
I_KOART = "Account Type
* I_MWSKZ = ' ' "Tax Code
* I_STBUK = ' ' "Tax Company Code
* I_UMSKS = ' ' "
* X_DIALOG = ' ' "
* X_TAXIT = ' ' "Tax Item
IMPORTING
E_EGRKZ = "
EXCEPTIONS
INPUT_TAX_CODE = 1 NO_TAX_CODE = 2 OUTPUT_TAX_CODE = 3 TAX_CODE = 4
IMPORTING Parameters details for FI_TAX_INDICATOR_CHECK
I_BUKRS - Company Code
Data type: BSEG-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_HKONT -
Data type: BSEG-HKONTOptional: No
Call by Reference: No ( called with pass by value option)
I_KOART - Account Type
Data type: BSEG-KOARTOptional: No
Call by Reference: No ( called with pass by value option)
I_MWSKZ - Tax Code
Data type: BSEG-MWSKZDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STBUK - Tax Company Code
Data type: BSEG-STBUKDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_UMSKS -
Data type: BSEG-UMSKSDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DIALOG -
Data type: BOOLE-BOOLEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_TAXIT - Tax Item
Data type: BOOLE-BOOLEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FI_TAX_INDICATOR_CHECK
E_EGRKZ -
Data type: T007A-EGRKZOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INPUT_TAX_CODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_TAX_CODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
OUTPUT_TAX_CODE - Only output tax allowed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TAX_CODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FI_TAX_INDICATOR_CHECK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_egrkz | TYPE T007A-EGRKZ, " | |||
| lv_i_bukrs | TYPE BSEG-BUKRS, " | |||
| lv_input_tax_code | TYPE BSEG, " | |||
| lv_i_hkont | TYPE BSEG-HKONT, " | |||
| lv_no_tax_code | TYPE BSEG, " | |||
| lv_i_koart | TYPE BSEG-KOART, " | |||
| lv_output_tax_code | TYPE BSEG, " | |||
| lv_i_mwskz | TYPE BSEG-MWSKZ, " SPACE | |||
| lv_tax_code | TYPE BSEG, " | |||
| lv_i_stbuk | TYPE BSEG-STBUK, " SPACE | |||
| lv_i_umsks | TYPE BSEG-UMSKS, " SPACE | |||
| lv_x_dialog | TYPE BOOLE-BOOLE, " SPACE | |||
| lv_x_taxit | TYPE BOOLE-BOOLE. " SPACE |
|   CALL FUNCTION 'FI_TAX_INDICATOR_CHECK' " |
| EXPORTING | ||
| I_BUKRS | = lv_i_bukrs | |
| I_HKONT | = lv_i_hkont | |
| I_KOART | = lv_i_koart | |
| I_MWSKZ | = lv_i_mwskz | |
| I_STBUK | = lv_i_stbuk | |
| I_UMSKS | = lv_i_umsks | |
| X_DIALOG | = lv_x_dialog | |
| X_TAXIT | = lv_x_taxit | |
| IMPORTING | ||
| E_EGRKZ | = lv_e_egrkz | |
| EXCEPTIONS | ||
| INPUT_TAX_CODE = 1 | ||
| NO_TAX_CODE = 2 | ||
| OUTPUT_TAX_CODE = 3 | ||
| TAX_CODE = 4 | ||
| . " FI_TAX_INDICATOR_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM FI_TAX_INDICATOR_CHECK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single EGRKZ FROM T007A INTO @DATA(ld_e_egrkz). | ||||
| "SELECT single BUKRS FROM BSEG INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single HKONT FROM BSEG INTO @DATA(ld_i_hkont). | ||||
| "SELECT single KOART FROM BSEG INTO @DATA(ld_i_koart). | ||||
| "SELECT single MWSKZ FROM BSEG INTO @DATA(ld_i_mwskz). | ||||
| DATA(ld_i_mwskz) | = ' '. | |||
| "SELECT single STBUK FROM BSEG INTO @DATA(ld_i_stbuk). | ||||
| DATA(ld_i_stbuk) | = ' '. | |||
| "SELECT single UMSKS FROM BSEG INTO @DATA(ld_i_umsks). | ||||
| DATA(ld_i_umsks) | = ' '. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_x_dialog). | ||||
| DATA(ld_x_dialog) | = ' '. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_x_taxit). | ||||
| DATA(ld_x_taxit) | = ' '. | |||
Search for further information about these or an SAP related objects