SAP OUTBOUND_CALL_00503104_E Function Module for NOTRANSL: Userexit Erlösrealisierung: Faktura <--> FI-Beleg (VF47)
OUTBOUND_CALL_00503104_E is a standard outbound call 00503104 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: Faktura <--> FI-Beleg (VF47) 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 00503104 e FM, simply by entering the name OUTBOUND_CALL_00503104_E into the relevant SAP transaction such as SE37 or SE38.
Function Group: BFFM4
Program Name: SAPLBFFM4
Main Program: SAPLBFFM4
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OUTBOUND_CALL_00503104_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_00503104_E'"NOTRANSL: Userexit Erlösrealisierung: Faktura <--> FI-Beleg (VF47).
EXPORTING
FIS_VBRK = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FIS_VBREVR = "
* FIF_MATNR = "Material Number
* FIF_TXJCD = "Tax Jurisdiction Code
* FIF_PRCTR = "Profit Center
CHANGING
FCS_BKPF = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FCS_BSEG = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FCF_CONN_CHECK = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for OUTBOUND_CALL_00503104_E
FIS_VBRK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: VBRKOptional: No
Call by Reference: Yes
FIS_VBREVR -
Data type: VBREVROptional: No
Call by Reference: Yes
FIF_MATNR - Material Number
Data type: VBRP-MATNROptional: Yes
Call by Reference: Yes
FIF_TXJCD - Tax Jurisdiction Code
Data type: VBRP-TXJCDOptional: Yes
Call by Reference: Yes
FIF_PRCTR - Profit Center
Data type: VBRP-PRCTROptional: Yes
Call by Reference: Yes
CHANGING Parameters details for OUTBOUND_CALL_00503104_E
FCS_BKPF - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: BKPFOptional: No
Call by Reference: Yes
FCS_BSEG - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: BSEGOptional: No
Call by Reference: Yes
FCF_CONN_CHECK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CHAR1Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OUTBOUND_CALL_00503104_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_fcs_bkpf | TYPE BKPF, " | |||
| lv_fis_vbrk | TYPE VBRK, " | |||
| lv_fcs_bseg | TYPE BSEG, " | |||
| lv_fis_vbrevr | TYPE VBREVR, " | |||
| lv_fif_matnr | TYPE VBRP-MATNR, " | |||
| lv_fcf_conn_check | TYPE CHAR1, " | |||
| lv_fif_txjcd | TYPE VBRP-TXJCD, " | |||
| lv_fif_prctr | TYPE VBRP-PRCTR. " |
|   CALL FUNCTION 'OUTBOUND_CALL_00503104_E' "NOTRANSL: Userexit Erlösrealisierung: Faktura <--> FI-Beleg (VF47) |
| EXPORTING | ||
| FIS_VBRK | = lv_fis_vbrk | |
| FIS_VBREVR | = lv_fis_vbrevr | |
| FIF_MATNR | = lv_fif_matnr | |
| FIF_TXJCD | = lv_fif_txjcd | |
| FIF_PRCTR | = lv_fif_prctr | |
| CHANGING | ||
| FCS_BKPF | = lv_fcs_bkpf | |
| FCS_BSEG | = lv_fcs_bseg | |
| FCF_CONN_CHECK | = lv_fcf_conn_check | |
| . " OUTBOUND_CALL_00503104_E | ||
ABAP code using 7.40 inline data declarations to call FM OUTBOUND_CALL_00503104_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 MATNR FROM VBRP INTO @DATA(ld_fif_matnr). | ||||
| "SELECT single TXJCD FROM VBRP INTO @DATA(ld_fif_txjcd). | ||||
| "SELECT single PRCTR FROM VBRP INTO @DATA(ld_fif_prctr). | ||||
Search for further information about these or an SAP related objects