SAP KR_USER_EXIT_ROUNDOFF Function Module for Round Off Tax Amounts









KR_USER_EXIT_ROUNDOFF is a standard kr user exit roundoff SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Round Off Tax Amounts processing and below is the pattern details for this FM, 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 kr user exit roundoff FM, simply by entering the name KR_USER_EXIT_ROUNDOFF into the relevant SAP transaction such as SE37 or SE38.

Function Group: KRGEU
Program Name: SAPLKRGEU
Main Program: SAPLKRGEU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function KR_USER_EXIT_ROUNDOFF 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 'KR_USER_EXIT_ROUNDOFF'"Round Off Tax Amounts
EXPORTING
* YSN1OP = "Aggregated Invoices
* YSTA1 = "Normal Invoices
YPROG_NAME = "Calling Program
* YREPRINT = "Reprint Option
* SAP = "SAPscript Output

TABLES
* YGT_ITEM_TABLE = "RFUMSV49R
* YDOCUMENT = "RFUMSV45R
* YAUSGLOP_ITAB = "RFIDKRTCR, RFIDKRTPR
.



IMPORTING Parameters details for KR_USER_EXIT_ROUNDOFF

YSN1OP - Aggregated Invoices

Data type:
Optional: Yes
Call by Reference: Yes

YSTA1 - Normal Invoices

Data type:
Optional: Yes
Call by Reference: Yes

YPROG_NAME - Calling Program

Data type: SY-CPROG
Optional: No
Call by Reference: Yes

YREPRINT - Reprint Option

Data type:
Optional: Yes
Call by Reference: Yes

SAP - SAPscript Output

Data type:
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for KR_USER_EXIT_ROUNDOFF

YGT_ITEM_TABLE - RFUMSV49R

Data type:
Optional: Yes
Call by Reference: Yes

YDOCUMENT - RFUMSV45R

Data type:
Optional: Yes
Call by Reference: Yes

YAUSGLOP_ITAB - RFIDKRTCR, RFIDKRTPR

Data type:
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for KR_USER_EXIT_ROUNDOFF 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_ysn1op  TYPE STRING, "   
lt_ygt_item_table  TYPE STANDARD TABLE OF STRING, "   
lv_ysta1  TYPE STRING, "   
lt_ydocument  TYPE STANDARD TABLE OF STRING, "   
lv_yprog_name  TYPE SY-CPROG, "   
lt_yausglop_itab  TYPE STANDARD TABLE OF SY, "   
lv_yreprint  TYPE SY, "   
lv_sap  TYPE SY. "   

  CALL FUNCTION 'KR_USER_EXIT_ROUNDOFF'  "Round Off Tax Amounts
    EXPORTING
         YSN1OP = lv_ysn1op
         YSTA1 = lv_ysta1
         YPROG_NAME = lv_yprog_name
         YREPRINT = lv_yreprint
         SAP = lv_sap
    TABLES
         YGT_ITEM_TABLE = lt_ygt_item_table
         YDOCUMENT = lt_ydocument
         YAUSGLOP_ITAB = lt_yausglop_itab
. " KR_USER_EXIT_ROUNDOFF




ABAP code using 7.40 inline data declarations to call FM KR_USER_EXIT_ROUNDOFF

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 CPROG FROM SY INTO @DATA(ld_yprog_name).
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!