SAP ACCR_GET_REVITEMS Function Module for Retrieves All Accrual Items to Be Posted in this Period ( FI/SEM )
ACCR_GET_REVITEMS is a standard accr get revitems SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Retrieves All Accrual Items to Be Posted in this Period ( FI/SEM ) 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 accr get revitems FM, simply by entering the name ACCR_GET_REVITEMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACCRPOST
Program Name: SAPLACCRPOST
Main Program:
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACCR_GET_REVITEMS 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 'ACCR_GET_REVITEMS'"Retrieves All Accrual Items to Be Posted in this Period ( FI/SEM ).
EXPORTING
I_PMON = "Posting Period: YYYYMM.
I_APPL = "
* I_SUCCESS_MESS = ' ' "
TABLES
SO_BUKRS = "Company code selection range
SO_BELNR = "
SO_DOCTYP = "
XT_ACCRPIT = "Accrual documents to post
ET_RESULT = "Accruals: results.
IMPORTING Parameters details for ACCR_GET_REVITEMS
I_PMON - Posting Period: YYYYMM.
Data type: ACCRPOST-PMONOptional: No
Call by Reference: No ( called with pass by value option)
I_APPL -
Data type: ACCRPOST-APPLOptional: No
Call by Reference: No ( called with pass by value option)
I_SUCCESS_MESS -
Data type:Default: SPACE
Optional: No
Call by Reference: Yes
TABLES Parameters details for ACCR_GET_REVITEMS
SO_BUKRS - Company code selection range
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SO_BELNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SO_DOCTYP -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
XT_ACCRPIT - Accrual documents to post
Data type: ACCRPITOptional: No
Call by Reference: No ( called with pass by value option)
ET_RESULT - Accruals: results.
Data type: ACCRRESOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ACCR_GET_REVITEMS 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_i_pmon | TYPE ACCRPOST-PMON, " | |||
| lt_so_bukrs | TYPE STANDARD TABLE OF ACCRPOST, " | |||
| lv_i_appl | TYPE ACCRPOST-APPL, " | |||
| lt_so_belnr | TYPE STANDARD TABLE OF ACCRPOST, " | |||
| lt_so_doctyp | TYPE STANDARD TABLE OF ACCRPOST, " | |||
| lv_i_success_mess | TYPE ACCRPOST, " SPACE | |||
| lt_xt_accrpit | TYPE STANDARD TABLE OF ACCRPIT, " | |||
| lt_et_result | TYPE STANDARD TABLE OF ACCRRES. " |
|   CALL FUNCTION 'ACCR_GET_REVITEMS' "Retrieves All Accrual Items to Be Posted in this Period ( FI/SEM ) |
| EXPORTING | ||
| I_PMON | = lv_i_pmon | |
| I_APPL | = lv_i_appl | |
| I_SUCCESS_MESS | = lv_i_success_mess | |
| TABLES | ||
| SO_BUKRS | = lt_so_bukrs | |
| SO_BELNR | = lt_so_belnr | |
| SO_DOCTYP | = lt_so_doctyp | |
| XT_ACCRPIT | = lt_xt_accrpit | |
| ET_RESULT | = lt_et_result | |
| . " ACCR_GET_REVITEMS | ||
ABAP code using 7.40 inline data declarations to call FM ACCR_GET_REVITEMS
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 PMON FROM ACCRPOST INTO @DATA(ld_i_pmon). | ||||
| "SELECT single APPL FROM ACCRPOST INTO @DATA(ld_i_appl). | ||||
| DATA(ld_i_success_mess) | = ' '. | |||
Search for further information about these or an SAP related objects