SAP OUTBOUND_CALL_00503111_E Function Module for NOTRANSL: Userexit Erlösrealisierung: Buchungsdatum und Belegart ändern
OUTBOUND_CALL_00503111_E is a standard outbound call 00503111 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: Buchungsdatum und Belegart ändern 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 00503111 e FM, simply by entering the name OUTBOUND_CALL_00503111_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_00503111_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_00503111_E'"NOTRANSL: Userexit Erlösrealisierung: Buchungsdatum und Belegart ändern.
EXPORTING
FIS_ACCHD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_ACCCR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_ACCIT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_VBREVE = "
CHANGING
FBF_BUDAT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FBF_BLART = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FBF_ERDAT = "Date on which the record was created
* FBF_ERZET = "
IMPORTING Parameters details for OUTBOUND_CALL_00503111_E
FIS_ACCHD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ACCHDOptional: No
Call by Reference: No ( called with pass by value option)
FIS_ACCCR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ACCCROptional: No
Call by Reference: No ( called with pass by value option)
FIS_ACCIT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ACCITOptional: No
Call by Reference: No ( called with pass by value option)
FIS_VBREVE -
Data type: VBREVEVBOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for OUTBOUND_CALL_00503111_E
FBF_BUDAT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ACCIT-BUDATOptional: No
Call by Reference: No ( called with pass by value option)
FBF_BLART - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ACCIT-BLARTOptional: No
Call by Reference: No ( called with pass by value option)
FBF_ERDAT - Date on which the record was created
Data type: VBREVE-ERDATOptional: Yes
Call by Reference: No ( called with pass by value option)
FBF_ERZET -
Data type: VBREVE-ERZETOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OUTBOUND_CALL_00503111_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_fbf_budat | TYPE ACCIT-BUDAT, " | |||
| lv_fis_acchd | TYPE ACCHD, " | |||
| lv_fbf_blart | TYPE ACCIT-BLART, " | |||
| lv_fis_acccr | TYPE ACCCR, " | |||
| lv_fbf_erdat | TYPE VBREVE-ERDAT, " | |||
| lv_fis_accit | TYPE ACCIT, " | |||
| lv_fbf_erzet | TYPE VBREVE-ERZET, " | |||
| lv_fis_vbreve | TYPE VBREVEVB. " |
|   CALL FUNCTION 'OUTBOUND_CALL_00503111_E' "NOTRANSL: Userexit Erlösrealisierung: Buchungsdatum und Belegart ändern |
| EXPORTING | ||
| FIS_ACCHD | = lv_fis_acchd | |
| FIS_ACCCR | = lv_fis_acccr | |
| FIS_ACCIT | = lv_fis_accit | |
| FIS_VBREVE | = lv_fis_vbreve | |
| CHANGING | ||
| FBF_BUDAT | = lv_fbf_budat | |
| FBF_BLART | = lv_fbf_blart | |
| FBF_ERDAT | = lv_fbf_erdat | |
| FBF_ERZET | = lv_fbf_erzet | |
| . " OUTBOUND_CALL_00503111_E | ||
ABAP code using 7.40 inline data declarations to call FM OUTBOUND_CALL_00503111_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 BUDAT FROM ACCIT INTO @DATA(ld_fbf_budat). | ||||
| "SELECT single BLART FROM ACCIT INTO @DATA(ld_fbf_blart). | ||||
| "SELECT single ERDAT FROM VBREVE INTO @DATA(ld_fbf_erdat). | ||||
| "SELECT single ERZET FROM VBREVE INTO @DATA(ld_fbf_erzet). | ||||
Search for further information about these or an SAP related objects