SAP ABR_GUTHABEN_FORDERUNG_ZU_MV Function Module for









ABR_GUTHABEN_FORDERUNG_ZU_MV is a standard abr guthaben forderung zu mv 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 abr guthaben forderung zu mv FM, simply by entering the name ABR_GUTHABEN_FORDERUNG_ZU_MV into the relevant SAP transaction such as SE37 or SE38.

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



Function ABR_GUTHABEN_FORDERUNG_ZU_MV 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 'ABR_GUTHABEN_FORDERUNG_ZU_MV'"
EXPORTING
* ABRECHNUNG = ' ' "
* BUDAT = "
BUKRS = "Company Code
* VVABBLN = ' ' "
* I_JRMSNKA = ' ' "
* I_CZNKA = ' ' "
* P_TAXDAT = "Date and Time, Current (Application Server) Date
* P_MWSTKZ = ' ' "Sales tax code
* T001_TXJCD = "
* BLDAT = "

TABLES
TVIAK13 = "
TVIAK14 = "
.



IMPORTING Parameters details for ABR_GUTHABEN_FORDERUNG_ZU_MV

ABRECHNUNG -

Data type: VIAK03-JLOESCH
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

BUDAT -

Data type: BSSBKPF-BUDAT
Optional: Yes
Call by Reference: Yes

BUKRS - Company Code

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

VVABBLN -

Data type: VIAK25-VVABBLN
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_JRMSNKA -

Data type: RFVINKAS-JRMSNKA
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CZNKA -

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

P_TAXDAT - Date and Time, Current (Application Server) Date

Data type: SY-DATUM
Optional: Yes
Call by Reference: Yes

P_MWSTKZ - Sales tax code

Data type: VIAK20-MWSKZ
Default: SPACE
Optional: Yes
Call by Reference: Yes

T001_TXJCD -

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

BLDAT -

Data type: BSSBKPF-BLDAT
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for ABR_GUTHABEN_FORDERUNG_ZU_MV

TVIAK13 -

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

TVIAK14 -

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

Copy and paste ABAP code example for ABR_GUTHABEN_FORDERUNG_ZU_MV 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_tviak13  TYPE STANDARD TABLE OF VIAK13, "   
lv_abrechnung  TYPE VIAK03-JLOESCH, "   SPACE
lv_budat  TYPE BSSBKPF-BUDAT, "   
lv_bukrs  TYPE T001-BUKRS, "   
lt_tviak14  TYPE STANDARD TABLE OF VIAK14, "   
lv_vvabbln  TYPE VIAK25-VVABBLN, "   SPACE
lv_i_jrmsnka  TYPE RFVINKAS-JRMSNKA, "   SPACE
lv_i_cznka  TYPE XFELD, "   SPACE
lv_p_taxdat  TYPE SY-DATUM, "   
lv_p_mwstkz  TYPE VIAK20-MWSKZ, "   SPACE
lv_t001_txjcd  TYPE T001, "   
lv_bldat  TYPE BSSBKPF-BLDAT. "   

  CALL FUNCTION 'ABR_GUTHABEN_FORDERUNG_ZU_MV'  "
    EXPORTING
         ABRECHNUNG = lv_abrechnung
         BUDAT = lv_budat
         BUKRS = lv_bukrs
         VVABBLN = lv_vvabbln
         I_JRMSNKA = lv_i_jrmsnka
         I_CZNKA = lv_i_cznka
         P_TAXDAT = lv_p_taxdat
         P_MWSTKZ = lv_p_mwstkz
         T001_TXJCD = lv_t001_txjcd
         BLDAT = lv_bldat
    TABLES
         TVIAK13 = lt_tviak13
         TVIAK14 = lt_tviak14
. " ABR_GUTHABEN_FORDERUNG_ZU_MV




ABAP code using 7.40 inline data declarations to call FM ABR_GUTHABEN_FORDERUNG_ZU_MV

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 JLOESCH FROM VIAK03 INTO @DATA(ld_abrechnung).
DATA(ld_abrechnung) = ' '.
 
"SELECT single BUDAT FROM BSSBKPF INTO @DATA(ld_budat).
 
"SELECT single BUKRS FROM T001 INTO @DATA(ld_bukrs).
 
 
"SELECT single VVABBLN FROM VIAK25 INTO @DATA(ld_vvabbln).
DATA(ld_vvabbln) = ' '.
 
"SELECT single JRMSNKA FROM RFVINKAS INTO @DATA(ld_i_jrmsnka).
DATA(ld_i_jrmsnka) = ' '.
 
DATA(ld_i_cznka) = ' '.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_p_taxdat).
 
"SELECT single MWSKZ FROM VIAK20 INTO @DATA(ld_p_mwstkz).
DATA(ld_p_mwstkz) = ' '.
 
 
"SELECT single BLDAT FROM BSSBKPF INTO @DATA(ld_bldat).
 


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!