SAP AD_BUILD_ACA Function Module for ACA: build from single fields (2.1-4)









AD_BUILD_ACA is a standard ad build aca SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ACA: build from single fields (2.1-4) 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 ad build aca FM, simply by entering the name AD_BUILD_ACA into the relevant SAP transaction such as SE37 or SE38.

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



Function AD_BUILD_ACA 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 'AD_BUILD_ACA'" ACA: build from single fields (2.1-4)
EXPORTING
KSCHL = "Condition type (coded)
KOTXT = "Condition text
KPERC = "Condition percentage rate
BETRG = "Fixed surcharge/discount on total gross
KOEIN = "Currency
ALCKZ = "Surcharge or discount indicator
SYSFLAG = "Systemflag for MM or SD

IMPORTING
ACA = "ADJUSTABLE COST DETAILS (Rev 2.1)
.



IMPORTING Parameters details for AD_BUILD_ACA

KSCHL - Condition type (coded)

Data type: EDI5189_A
Optional: No
Call by Reference: Yes

KOTXT - Condition text

Data type: EDI1230LA
Optional: No
Call by Reference: Yes

KPERC - Condition percentage rate

Data type: EDI5482_C
Optional: No
Call by Reference: Yes

BETRG - Fixed surcharge/discount on total gross

Data type: EDI5004_P
Optional: No
Call by Reference: Yes

KOEIN - Currency

Data type: EDI6345_A
Optional: No
Call by Reference: Yes

ALCKZ - Surcharge or discount indicator

Data type: EDI5463_A
Optional: No
Call by Reference: Yes

SYSFLAG - Systemflag for MM or SD

Data type: ADSPCM_SYSTEM
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for AD_BUILD_ACA

ACA - ADJUSTABLE COST DETAILS (Rev 2.1)

Data type: ADSPCM_ACA
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for AD_BUILD_ACA 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_aca  TYPE ADSPCM_ACA, "   
lv_kschl  TYPE EDI5189_A, "   
lv_kotxt  TYPE EDI1230LA, "   
lv_kperc  TYPE EDI5482_C, "   
lv_betrg  TYPE EDI5004_P, "   
lv_koein  TYPE EDI6345_A, "   
lv_alckz  TYPE EDI5463_A, "   
lv_sysflag  TYPE ADSPCM_SYSTEM. "   

  CALL FUNCTION 'AD_BUILD_ACA'  " ACA: build from single fields (2.1-4)
    EXPORTING
         KSCHL = lv_kschl
         KOTXT = lv_kotxt
         KPERC = lv_kperc
         BETRG = lv_betrg
         KOEIN = lv_koein
         ALCKZ = lv_alckz
         SYSFLAG = lv_sysflag
    IMPORTING
         ACA = lv_aca
. " AD_BUILD_ACA




ABAP code using 7.40 inline data declarations to call FM AD_BUILD_ACA

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!