SAP ACCR_GET_POSTITEMS Function Module for Retrieves All Accrual Items to Be Posted in this Period (SI/SEM)









ACCR_GET_POSTITEMS is a standard accr get postitems 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 (SI/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 postitems FM, simply by entering the name ACCR_GET_POSTITEMS 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_POSTITEMS 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_POSTITEMS'"Retrieves All Accrual Items to Be Posted in this Period (SI/SEM)
EXPORTING
I_BUDAT = "Posting date.
I_PMON = "Periode/Jahr
* 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_POSTITEMS

I_BUDAT - Posting date.

Data type: SY-DATUM
Optional: No
Call by Reference: No ( called with pass by value option)

I_PMON - Periode/Jahr

Data type: ACCRPOST-PMON
Optional: No
Call by Reference: Yes

I_SUCCESS_MESS -

Data type:
Default: SPACE
Optional: No
Call by Reference: Yes

TABLES Parameters details for ACCR_GET_POSTITEMS

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: ACCRPIT
Optional: No
Call by Reference: No ( called with pass by value option)

ET_RESULT - Accruals: results.

Data type: ACCRRES
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ACCR_GET_POSTITEMS 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_budat  TYPE SY-DATUM, "   
lt_so_bukrs  TYPE STANDARD TABLE OF SY, "   
lv_i_pmon  TYPE ACCRPOST-PMON, "   
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_POSTITEMS'  "Retrieves All Accrual Items to Be Posted in this Period (SI/SEM)
    EXPORTING
         I_BUDAT = lv_i_budat
         I_PMON = lv_i_pmon
         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_POSTITEMS




ABAP code using 7.40 inline data declarations to call FM ACCR_GET_POSTITEMS

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 DATUM FROM SY INTO @DATA(ld_i_budat).
 
 
"SELECT single PMON FROM ACCRPOST INTO @DATA(ld_i_pmon).
 
 
 
DATA(ld_i_success_mess) = ' '.
 
 
 


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!