ISU_SAMPLE_R973 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ISU_SAMPLE_R973 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
E25P
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_SAMPLE_R973' "Calculation of Sales Tax During Creation of BB Plan
EXPORTING
i_vkont = " fkkvkp Contract Account Partner-Specific
i_t001 = " t001 Company Codes
i_abdat = " te011-ab Date from Which a Time Slice is Valid
i_sparte = " te001-sparte Division
i_kofiz = " fkkop-kofiz Account Determination ID
i_tvorg = " tfktvo-tvorg Subtransaction for Line Item
i_waers = " t001-waers Currency Key
i_txjcd = " sfkkop-txjcd Jurisdiction for Tax Calculation - Tax Jurisdiction Code
i_txdat = " sfkkop-txdat Deciding date for calculating taxes
i_nettobtr = " sfkkop-betrw Amount in Transaction Currency with +/- Sign
i_fkktaxexc = " fkktaxexc Parameters for Determining the Tax-Exemption Key
IMPORTING
e_sbetw = " sfkkop-sbetw Tax amount in transaction currency with +/- sign
e_ermwskz = " ermwskz
e_mwskz = " mwskz
EXCEPTIONS
IU_ERROR = 1 "
SYSTEM_ERROR = 2 "
. " ISU_SAMPLE_R973
The ABAP code below is a full code listing to execute function module ISU_SAMPLE_R973 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_sbetw | TYPE SFKKOP-SBETW , |
| ld_e_ermwskz | TYPE ERMWSKZ , |
| ld_e_mwskz | TYPE MWSKZ . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_sbetw | TYPE SFKKOP-SBETW , |
| ld_i_vkont | TYPE FKKVKP , |
| ld_e_ermwskz | TYPE ERMWSKZ , |
| ld_i_t001 | TYPE T001 , |
| ld_e_mwskz | TYPE MWSKZ , |
| ld_i_abdat | TYPE TE011-AB , |
| ld_i_sparte | TYPE TE001-SPARTE , |
| ld_i_kofiz | TYPE FKKOP-KOFIZ , |
| ld_i_tvorg | TYPE TFKTVO-TVORG , |
| ld_i_waers | TYPE T001-WAERS , |
| ld_i_txjcd | TYPE SFKKOP-TXJCD , |
| ld_i_txdat | TYPE SFKKOP-TXDAT , |
| ld_i_nettobtr | TYPE SFKKOP-BETRW , |
| ld_i_fkktaxexc | TYPE FKKTAXEXC . |
You need this enhancement if you have activated the function
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISU_SAMPLE_R973 or its description.
ISU_SAMPLE_R973 - Calculation of Sales Tax During Creation of BB Plan ISU_SAMPLE_R972 - Tax on Sales/Purchases Code Zero ISU_SAMPLE_R971_IND - Addition of division and vtref values to generated LPC or PPI line ite ISU_SAMPLE_R971 - ISU_SAMPLE_R970_JPN - JAPAN: Determination of LPC-Relevant Items ISU_SAMPLE_R970_IND - Selection of line items relevant for LPC/PPI