SAP OUTBOUND_CALL_00503103_E Function Module for NOTRANSL: Userexit Erlösrealisierung: Ermittlung Abgrenzungszeitraum (zeit
OUTBOUND_CALL_00503103_E is a standard outbound call 00503103 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: Ermittlung Abgrenzungszeitraum (zeit 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 00503103 e FM, simply by entering the name OUTBOUND_CALL_00503103_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_00503103_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_00503103_E'"NOTRANSL: Userexit Erlösrealisierung: Ermittlung Abgrenzungszeitraum (zeit.
EXPORTING
* FIS_T009 = "
FIF_DATE_BEGIN = "
FIF_DATE_END = "
FIF_CAL_ID = "
FIF_DAYS = "Days
FIF_MONTHS = "Month
FIF_YEARS = "
FIF_WEEKS = "Weeks
CHANGING
FBF_DATE_PERIOD = "
FBF_ACCPD_UNIT = "
IMPORTING Parameters details for OUTBOUND_CALL_00503103_E
FIS_T009 -
Data type: T009Optional: Yes
Call by Reference: No ( called with pass by value option)
FIF_DATE_BEGIN -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
FIF_DATE_END -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
FIF_CAL_ID -
Data type: TVRG-PERCAOptional: No
Call by Reference: No ( called with pass by value option)
FIF_DAYS - Days
Data type: KOMP-ANZ_TAGEOptional: No
Call by Reference: No ( called with pass by value option)
FIF_MONTHS - Month
Data type: KOMP-ANZ_MONATEOptional: No
Call by Reference: No ( called with pass by value option)
FIF_YEARS -
Data type: KOMP-ANZ_JAHREOptional: No
Call by Reference: No ( called with pass by value option)
FIF_WEEKS - Weeks
Data type: KOMP-ANZ_WOCHENOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for OUTBOUND_CALL_00503103_E
FBF_DATE_PERIOD -
Data type: VBREVK-ACCPDOptional: No
Call by Reference: No ( called with pass by value option)
FBF_ACCPD_UNIT -
Data type: VEDA-VLAUEZOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OUTBOUND_CALL_00503103_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: | ||||
| lv_fis_t009 | TYPE T009, " | |||
| lv_fbf_date_period | TYPE VBREVK-ACCPD, " | |||
| lv_fbf_accpd_unit | TYPE VEDA-VLAUEZ, " | |||
| lv_fif_date_begin | TYPE SY-DATUM, " | |||
| lv_fif_date_end | TYPE SY-DATUM, " | |||
| lv_fif_cal_id | TYPE TVRG-PERCA, " | |||
| lv_fif_days | TYPE KOMP-ANZ_TAGE, " | |||
| lv_fif_months | TYPE KOMP-ANZ_MONATE, " | |||
| lv_fif_years | TYPE KOMP-ANZ_JAHRE, " | |||
| lv_fif_weeks | TYPE KOMP-ANZ_WOCHEN. " |
|   CALL FUNCTION 'OUTBOUND_CALL_00503103_E' "NOTRANSL: Userexit Erlösrealisierung: Ermittlung Abgrenzungszeitraum (zeit |
| EXPORTING | ||
| FIS_T009 | = lv_fis_t009 | |
| FIF_DATE_BEGIN | = lv_fif_date_begin | |
| FIF_DATE_END | = lv_fif_date_end | |
| FIF_CAL_ID | = lv_fif_cal_id | |
| FIF_DAYS | = lv_fif_days | |
| FIF_MONTHS | = lv_fif_months | |
| FIF_YEARS | = lv_fif_years | |
| FIF_WEEKS | = lv_fif_weeks | |
| CHANGING | ||
| FBF_DATE_PERIOD | = lv_fbf_date_period | |
| FBF_ACCPD_UNIT | = lv_fbf_accpd_unit | |
| . " OUTBOUND_CALL_00503103_E | ||
ABAP code using 7.40 inline data declarations to call FM OUTBOUND_CALL_00503103_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 ACCPD FROM VBREVK INTO @DATA(ld_fbf_date_period). | ||||
| "SELECT single VLAUEZ FROM VEDA INTO @DATA(ld_fbf_accpd_unit). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_fif_date_begin). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_fif_date_end). | ||||
| "SELECT single PERCA FROM TVRG INTO @DATA(ld_fif_cal_id). | ||||
| "SELECT single ANZ_TAGE FROM KOMP INTO @DATA(ld_fif_days). | ||||
| "SELECT single ANZ_MONATE FROM KOMP INTO @DATA(ld_fif_months). | ||||
| "SELECT single ANZ_JAHRE FROM KOMP INTO @DATA(ld_fif_years). | ||||
| "SELECT single ANZ_WOCHEN FROM KOMP INTO @DATA(ld_fif_weeks). | ||||
Search for further information about these or an SAP related objects