SAP FVVI_BUCHUNG_BELEG_BSS Function Module for
FVVI_BUCHUNG_BELEG_BSS is a standard fvvi buchung beleg bss 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 fvvi buchung beleg bss FM, simply by entering the name FVVI_BUCHUNG_BELEG_BSS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVVI_BANK_STMT
Program Name: SAPLFVVI_BANK_STMT
Main Program: SAPLFVVI_BANK_STMT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVVI_BUCHUNG_BELEG_BSS 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 'FVVI_BUCHUNG_BELEG_BSS'".
EXPORTING
* I_ABWZE = ' ' "
* I_RANL = ' ' "
* I_RESTPOSTEN = ' ' "
* I_SOLL = 'X' "
I_VBEWA = "
I_BKPF = "
I_BLDAT = "
I_BSEGHABEN = "
I_BSEGSOLL = "
I_BUCHKZ = "
I_BUDAT = "
* I_HABEN = ' ' "
I_MAPPE = "
EXCEPTIONS
BOOK_IMPOSSIBLE = 1
IMPORTING Parameters details for FVVI_BUCHUNG_BELEG_BSS
I_ABWZE -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_RANL -
Data type: RANLDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_RESTPOSTEN -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SOLL -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VBEWA -
Data type: BSEG-VBEWAOptional: No
Call by Reference: No ( called with pass by value option)
I_BKPF -
Data type: BKPFOptional: No
Call by Reference: No ( called with pass by value option)
I_BLDAT -
Data type: BKPF-BLDATOptional: No
Call by Reference: No ( called with pass by value option)
I_BSEGHABEN -
Data type: BSEGOptional: No
Call by Reference: No ( called with pass by value option)
I_BSEGSOLL -
Data type: BSEGOptional: No
Call by Reference: No ( called with pass by value option)
I_BUCHKZ -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_BUDAT -
Data type: BKPF-BUDATOptional: No
Call by Reference: No ( called with pass by value option)
I_HABEN -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MAPPE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
BOOK_IMPOSSIBLE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FVVI_BUCHUNG_BELEG_BSS 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_abwze | TYPE STRING, " SPACE | |||
| lv_book_impossible | TYPE STRING, " | |||
| lv_i_ranl | TYPE RANL, " SPACE | |||
| lv_i_restposten | TYPE RANL, " SPACE | |||
| lv_i_soll | TYPE RANL, " 'X' | |||
| lv_i_vbewa | TYPE BSEG-VBEWA, " | |||
| lv_i_bkpf | TYPE BKPF, " | |||
| lv_i_bldat | TYPE BKPF-BLDAT, " | |||
| lv_i_bseghaben | TYPE BSEG, " | |||
| lv_i_bsegsoll | TYPE BSEG, " | |||
| lv_i_buchkz | TYPE BSEG, " | |||
| lv_i_budat | TYPE BKPF-BUDAT, " | |||
| lv_i_haben | TYPE BKPF, " SPACE | |||
| lv_i_mappe | TYPE BKPF. " |
|   CALL FUNCTION 'FVVI_BUCHUNG_BELEG_BSS' " |
| EXPORTING | ||
| I_ABWZE | = lv_i_abwze | |
| I_RANL | = lv_i_ranl | |
| I_RESTPOSTEN | = lv_i_restposten | |
| I_SOLL | = lv_i_soll | |
| I_VBEWA | = lv_i_vbewa | |
| I_BKPF | = lv_i_bkpf | |
| I_BLDAT | = lv_i_bldat | |
| I_BSEGHABEN | = lv_i_bseghaben | |
| I_BSEGSOLL | = lv_i_bsegsoll | |
| I_BUCHKZ | = lv_i_buchkz | |
| I_BUDAT | = lv_i_budat | |
| I_HABEN | = lv_i_haben | |
| I_MAPPE | = lv_i_mappe | |
| EXCEPTIONS | ||
| BOOK_IMPOSSIBLE = 1 | ||
| . " FVVI_BUCHUNG_BELEG_BSS | ||
ABAP code using 7.40 inline data declarations to call FM FVVI_BUCHUNG_BELEG_BSS
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.| DATA(ld_i_abwze) | = ' '. | |||
| DATA(ld_i_ranl) | = ' '. | |||
| DATA(ld_i_restposten) | = ' '. | |||
| DATA(ld_i_soll) | = 'X'. | |||
| "SELECT single VBEWA FROM BSEG INTO @DATA(ld_i_vbewa). | ||||
| "SELECT single BLDAT FROM BKPF INTO @DATA(ld_i_bldat). | ||||
| "SELECT single BUDAT FROM BKPF INTO @DATA(ld_i_budat). | ||||
| DATA(ld_i_haben) | = ' '. | |||
Search for further information about these or an SAP related objects