SAP AC_DOCUMENT_DIRECT_INPUT Function Module for









AC_DOCUMENT_DIRECT_INPUT is a standard ac document direct input 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 ac document direct input FM, simply by entering the name AC_DOCUMENT_DIRECT_INPUT into the relevant SAP transaction such as SE37 or SE38.

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



Function AC_DOCUMENT_DIRECT_INPUT 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 'AC_DOCUMENT_DIRECT_INPUT'"
EXPORTING
* I_NODATA = '/' "Initial indicator
* I_TESTRUN = "
* I_GRPID = "
* I_GET_ACC = "

IMPORTING
E_BUKRS = "Company code
E_GJAHR = "Fiscal year
E_BELNR = "Financial accounting document number

TABLES
T_BBKPF = "Document header batch input structure
T_BBSEG = "Line item batch input structure
T_BBTAX = "
* T_BWITH = "
* T_ACCHD = "Accounting Interface: Header Information
* T_ACCIT = "Accounting Interface: Item Information
* T_ACCCR = "Accounting Interface: Currency Information
* T_ACCIT_SPL = "Accounting Interface: Item Information
* T_ACCCR_SPL = "Accounting Interface: Currency Information
.



IMPORTING Parameters details for AC_DOCUMENT_DIRECT_INPUT

I_NODATA - Initial indicator

Data type: BGR00-NODATA
Default: '/'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TESTRUN -

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

I_GRPID -

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

I_GET_ACC -

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

EXPORTING Parameters details for AC_DOCUMENT_DIRECT_INPUT

E_BUKRS - Company code

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

E_GJAHR - Fiscal year

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

E_BELNR - Financial accounting document number

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

TABLES Parameters details for AC_DOCUMENT_DIRECT_INPUT

T_BBKPF - Document header batch input structure

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

T_BBSEG - Line item batch input structure

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

T_BBTAX -

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

T_BWITH -

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

T_ACCHD - Accounting Interface: Header Information

Data type: ACCHD
Optional: Yes
Call by Reference: Yes

T_ACCIT - Accounting Interface: Item Information

Data type: ACCIT
Optional: Yes
Call by Reference: Yes

T_ACCCR - Accounting Interface: Currency Information

Data type: ACCCR
Optional: Yes
Call by Reference: Yes

T_ACCIT_SPL - Accounting Interface: Item Information

Data type: ACCIT
Optional: Yes
Call by Reference: Yes

T_ACCCR_SPL - Accounting Interface: Currency Information

Data type: ACCCR
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for AC_DOCUMENT_DIRECT_INPUT 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_e_bukrs  TYPE ACCIT-BUKRS, "   
lt_t_bbkpf  TYPE STANDARD TABLE OF BBKPF, "   
lv_i_nodata  TYPE BGR00-NODATA, "   '/'
lv_e_gjahr  TYPE ACCIT-GJAHR, "   
lt_t_bbseg  TYPE STANDARD TABLE OF BBSEG_DI, "   
lv_i_testrun  TYPE BOOLE-BOOLE, "   
lv_e_belnr  TYPE ACCIT-BELNR, "   
lv_i_grpid  TYPE BKPF-GRPID, "   
lt_t_bbtax  TYPE STANDARD TABLE OF BBTAX, "   
lt_t_bwith  TYPE STANDARD TABLE OF BWITH_DI, "   
lv_i_get_acc  TYPE BOOLE-BOOLE, "   
lt_t_acchd  TYPE STANDARD TABLE OF ACCHD, "   
lt_t_accit  TYPE STANDARD TABLE OF ACCIT, "   
lt_t_acccr  TYPE STANDARD TABLE OF ACCCR, "   
lt_t_accit_spl  TYPE STANDARD TABLE OF ACCIT, "   
lt_t_acccr_spl  TYPE STANDARD TABLE OF ACCCR. "   

  CALL FUNCTION 'AC_DOCUMENT_DIRECT_INPUT'  "
    EXPORTING
         I_NODATA = lv_i_nodata
         I_TESTRUN = lv_i_testrun
         I_GRPID = lv_i_grpid
         I_GET_ACC = lv_i_get_acc
    IMPORTING
         E_BUKRS = lv_e_bukrs
         E_GJAHR = lv_e_gjahr
         E_BELNR = lv_e_belnr
    TABLES
         T_BBKPF = lt_t_bbkpf
         T_BBSEG = lt_t_bbseg
         T_BBTAX = lt_t_bbtax
         T_BWITH = lt_t_bwith
         T_ACCHD = lt_t_acchd
         T_ACCIT = lt_t_accit
         T_ACCCR = lt_t_acccr
         T_ACCIT_SPL = lt_t_accit_spl
         T_ACCCR_SPL = lt_t_acccr_spl
. " AC_DOCUMENT_DIRECT_INPUT




ABAP code using 7.40 inline data declarations to call FM AC_DOCUMENT_DIRECT_INPUT

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 BUKRS FROM ACCIT INTO @DATA(ld_e_bukrs).
 
 
"SELECT single NODATA FROM BGR00 INTO @DATA(ld_i_nodata).
DATA(ld_i_nodata) = '/'.
 
"SELECT single GJAHR FROM ACCIT INTO @DATA(ld_e_gjahr).
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_testrun).
 
"SELECT single BELNR FROM ACCIT INTO @DATA(ld_e_belnr).
 
"SELECT single GRPID FROM BKPF INTO @DATA(ld_i_grpid).
 
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_get_acc).
 
 
 
 
 
 


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!