SAP OUTBOUND_CALL_00503102_E Function Module for NOTRANSL: Userexit Erlösrealisierung: Abgrenzungszeitraum - Start/Ende (ze









OUTBOUND_CALL_00503102_E is a standard outbound call 00503102 e SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Userexit Erlösrealisierung: Abgrenzungszeitraum - Start/Ende (ze 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 outbound call 00503102 e FM, simply by entering the name OUTBOUND_CALL_00503102_E into the relevant SAP transaction such as SE37 or SE38.

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



Function OUTBOUND_CALL_00503102_E 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 'OUTBOUND_CALL_00503102_E'"NOTRANSL: Userexit Erlösrealisierung: Abgrenzungszeitraum - Start/Ende (ze
EXPORTING
FIF_CAL_ID = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_XVBAK = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_XVBAP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_XVBKD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_XVEDA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_XFPLT = "DE-EN-LANG-SWITCH-NO-TRANSLATION

CHANGING
FBF_DATE_BEGIN = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FBF_DATE_END = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FBS_TFPLA = "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
FIT_XKOMV = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIT_XFPLA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.



IMPORTING Parameters details for OUTBOUND_CALL_00503102_E

FIF_CAL_ID - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIS_XVBAK - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIS_XVBAP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIS_XVBKD - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIS_XVEDA - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIS_XFPLT - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

CHANGING Parameters details for OUTBOUND_CALL_00503102_E

FBF_DATE_BEGIN - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FBF_DATE_END - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FBS_TFPLA - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

TABLES Parameters details for OUTBOUND_CALL_00503102_E

FIT_XKOMV - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FIT_XFPLA - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for OUTBOUND_CALL_00503102_E 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_fit_xkomv  TYPE STANDARD TABLE OF KOMV, "   
lv_fif_cal_id  TYPE TVRG-PERCA, "   
lv_fbf_date_begin  TYPE SY-DATUM, "   
lv_fis_xvbak  TYPE VBAK, "   
lt_fit_xfpla  TYPE STANDARD TABLE OF FPLAVB, "   
lv_fbf_date_end  TYPE SY-DATUM, "   
lv_fbs_tfpla  TYPE TFPLA, "   
lv_fis_xvbap  TYPE VBAPVB, "   
lv_fis_xvbkd  TYPE VBKDVB, "   
lv_fis_xveda  TYPE VEDAVB, "   
lv_fis_xfplt  TYPE FPLTVB. "   

  CALL FUNCTION 'OUTBOUND_CALL_00503102_E'  "NOTRANSL: Userexit Erlösrealisierung: Abgrenzungszeitraum - Start/Ende (ze
    EXPORTING
         FIF_CAL_ID = lv_fif_cal_id
         FIS_XVBAK = lv_fis_xvbak
         FIS_XVBAP = lv_fis_xvbap
         FIS_XVBKD = lv_fis_xvbkd
         FIS_XVEDA = lv_fis_xveda
         FIS_XFPLT = lv_fis_xfplt
    CHANGING
         FBF_DATE_BEGIN = lv_fbf_date_begin
         FBF_DATE_END = lv_fbf_date_end
         FBS_TFPLA = lv_fbs_tfpla
    TABLES
         FIT_XKOMV = lt_fit_xkomv
         FIT_XFPLA = lt_fit_xfpla
. " OUTBOUND_CALL_00503102_E




ABAP code using 7.40 inline data declarations to call FM OUTBOUND_CALL_00503102_E

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 PERCA FROM TVRG INTO @DATA(ld_fif_cal_id).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_fbf_date_begin).
 
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_fbf_date_end).
 
 
 
 
 
 


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!