SAP AUC_SETTLEMENT_POST Function Module for









AUC_SETTLEMENT_POST is a standard auc settlement post 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 auc settlement post FM, simply by entering the name AUC_SETTLEMENT_POST into the relevant SAP transaction such as SE37 or SE38.

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



Function AUC_SETTLEMENT_POST 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 'AUC_SETTLEMENT_POST'"
EXPORTING
AK = "Settlement document: header

TABLES
AA = "Settlement document: addressee
AB = "Settlement document: used posting rules
AO = "Settlement document: objects
AS = "Settlement document: totals
AV = "Settlement document: transactions
* AI = "
* AI_REST = "
* CB = "

EXCEPTIONS
ERROR_OCCURRED = 1
.



IMPORTING Parameters details for AUC_SETTLEMENT_POST

AK - Settlement document: header

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

TABLES Parameters details for AUC_SETTLEMENT_POST

AA - Settlement document: addressee

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

AB - Settlement document: used posting rules

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

AO - Settlement document: objects

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

AS - Settlement document: totals

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

AV - Settlement document: transactions

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

AI -

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

AI_REST -

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

CB -

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

EXCEPTIONS details

ERROR_OCCURRED - An Error Has Occurred

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

Copy and paste ABAP code example for AUC_SETTLEMENT_POST 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:
lt_aa  TYPE STANDARD TABLE OF AUAA, "   
lv_ak  TYPE AUAK, "   
lv_error_occurred  TYPE AUAK, "   
lt_ab  TYPE STANDARD TABLE OF AUAB, "   
lt_ao  TYPE STANDARD TABLE OF AUAO, "   
lt_as  TYPE STANDARD TABLE OF AUAS, "   
lt_av  TYPE STANDARD TABLE OF AUAV, "   
lt_ai  TYPE STANDARD TABLE OF AUAI, "   
lt_ai_rest  TYPE STANDARD TABLE OF AUAI, "   
lt_cb  TYPE STANDARD TABLE OF COBRB. "   

  CALL FUNCTION 'AUC_SETTLEMENT_POST'  "
    EXPORTING
         AK = lv_ak
    TABLES
         AA = lt_aa
         AB = lt_ab
         AO = lt_ao
         AS = lt_as
         AV = lt_av
         AI = lt_ai
         AI_REST = lt_ai_rest
         CB = lt_cb
    EXCEPTIONS
        ERROR_OCCURRED = 1
. " AUC_SETTLEMENT_POST




ABAP code using 7.40 inline data declarations to call FM AUC_SETTLEMENT_POST

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.

 
 
 
 
 
 
 
 
 
 


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!