SAP OUTBOUND_CALL_00107050_P Function Module for BTE 00107050: RFFMKG03 Anordnung ändern
OUTBOUND_CALL_00107050_P is a standard outbound call 00107050 p SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BTE 00107050: RFFMKG03 Anordnung ä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 00107050 p FM, simply by entering the name OUTBOUND_CALL_00107050_P into the relevant SAP transaction such as SE37 or SE38.
Function Group: F0KI
Program Name: SAPLF0KI
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OUTBOUND_CALL_00107050_P 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_00107050_P'"BTE 00107050: RFFMKG03 Anordnung ändern.
EXPORTING
* I_BELNR = "Belegnummer Mittelvormerkung
* I_BLPOS = "Belegposition Mittelvormerkung
* I_BPENT = "Belegpositionsentwicklung
* I_BKPF = "Belegkopf für Buchhaltung
TABLES
* T_BSEG = "Belegsegment Buchhaltung
* T_BSEC = "Belegsegment CPD-Daten
* T_BSET = "Belegsegment Steuerdaten
* T_BBKPF = "Belegkopf für Buchhaltungsbeleg (Batch-Input-Struktur)
* T_BBSEG = "Belegsegment Buchhaltung für IS-PS (Batch-Input-Struktur)
* T_BBTAX = "Belegsteuern (Batch-Input-Struktur)
IMPORTING Parameters details for OUTBOUND_CALL_00107050_P
I_BELNR - Belegnummer Mittelvormerkung
Data type: KBLE-BELNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_BLPOS - Belegposition Mittelvormerkung
Data type: KBLE-BLPOSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BPENT - Belegpositionsentwicklung
Data type: KBLE-BPENTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BKPF - Belegkopf für Buchhaltung
Data type: BKPFOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for OUTBOUND_CALL_00107050_P
T_BSEG - Belegsegment Buchhaltung
Data type: BSEGOptional: Yes
Call by Reference: No ( called with pass by value option)
T_BSEC - Belegsegment CPD-Daten
Data type: BSECOptional: Yes
Call by Reference: No ( called with pass by value option)
T_BSET - Belegsegment Steuerdaten
Data type: BSETOptional: Yes
Call by Reference: No ( called with pass by value option)
T_BBKPF - Belegkopf für Buchhaltungsbeleg (Batch-Input-Struktur)
Data type: BBKPF_FMOptional: Yes
Call by Reference: No ( called with pass by value option)
T_BBSEG - Belegsegment Buchhaltung für IS-PS (Batch-Input-Struktur)
Data type: BBSEG_FMOptional: Yes
Call by Reference: No ( called with pass by value option)
T_BBTAX - Belegsteuern (Batch-Input-Struktur)
Data type: BBTAX_FMOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OUTBOUND_CALL_00107050_P 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_t_bseg | TYPE STANDARD TABLE OF BSEG, " | |||
| lv_i_belnr | TYPE KBLE-BELNR, " | |||
| lt_t_bsec | TYPE STANDARD TABLE OF BSEC, " | |||
| lv_i_blpos | TYPE KBLE-BLPOS, " | |||
| lt_t_bset | TYPE STANDARD TABLE OF BSET, " | |||
| lv_i_bpent | TYPE KBLE-BPENT, " | |||
| lv_i_bkpf | TYPE BKPF, " | |||
| lt_t_bbkpf | TYPE STANDARD TABLE OF BBKPF_FM, " | |||
| lt_t_bbseg | TYPE STANDARD TABLE OF BBSEG_FM, " | |||
| lt_t_bbtax | TYPE STANDARD TABLE OF BBTAX_FM. " |
|   CALL FUNCTION 'OUTBOUND_CALL_00107050_P' "BTE 00107050: RFFMKG03 Anordnung ändern |
| EXPORTING | ||
| I_BELNR | = lv_i_belnr | |
| I_BLPOS | = lv_i_blpos | |
| I_BPENT | = lv_i_bpent | |
| I_BKPF | = lv_i_bkpf | |
| TABLES | ||
| T_BSEG | = lt_t_bseg | |
| T_BSEC | = lt_t_bsec | |
| T_BSET | = lt_t_bset | |
| T_BBKPF | = lt_t_bbkpf | |
| T_BBSEG | = lt_t_bbseg | |
| T_BBTAX | = lt_t_bbtax | |
| . " OUTBOUND_CALL_00107050_P | ||
ABAP code using 7.40 inline data declarations to call FM OUTBOUND_CALL_00107050_P
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 BELNR FROM KBLE INTO @DATA(ld_i_belnr). | ||||
| "SELECT single BLPOS FROM KBLE INTO @DATA(ld_i_blpos). | ||||
| "SELECT single BPENT FROM KBLE INTO @DATA(ld_i_bpent). | ||||
Search for further information about these or an SAP related objects