SAP BORTE_DATA_FROM_BORTE Function Module for NOTRANSL: Daten zum Hauptprogramm
BORTE_DATA_FROM_BORTE is a standard borte data from borte 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: Daten zum Hauptprogramm 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 borte data from borte FM, simply by entering the name BORTE_DATA_FROM_BORTE into the relevant SAP transaction such as SE37 or SE38.
Function Group: BORTE
Program Name: SAPLBORTE
Main Program: SAPLBORTE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BORTE_DATA_FROM_BORTE 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 'BORTE_DATA_FROM_BORTE'"NOTRANSL: Daten zum Hauptprogramm.
IMPORTING
I_FCODE = "Function code
IS_YVTTK = "Shipment Header for Logging
IS_XVTTK = "Shipment Header for Logging
IT_YVTTS = "Table type for VTTSVB: Shipment Stages w/ dynamic data
IT_XVTTS = "Table type for VTTSVB: Shipment Stages w/ dynamic data
IT_YVTTP = "Table type for VTTPVB: Shipment Items w/ dynamic data
IT_XVTTP = "Table type for VTTPVB: Shipment Items w/ dynamic data
EXPORTING Parameters details for BORTE_DATA_FROM_BORTE
I_FCODE - Function code
Data type: T185F-FCODEOptional: No
Call by Reference: Yes
IS_YVTTK - Shipment Header for Logging
Data type: VTTKVBOptional: No
Call by Reference: Yes
IS_XVTTK - Shipment Header for Logging
Data type: VTTKVBOptional: No
Call by Reference: Yes
IT_YVTTS - Table type for VTTSVB: Shipment Stages w/ dynamic data
Data type: VTTSVB_TABOptional: No
Call by Reference: Yes
IT_XVTTS - Table type for VTTSVB: Shipment Stages w/ dynamic data
Data type: VTTSVB_TABOptional: No
Call by Reference: Yes
IT_YVTTP - Table type for VTTPVB: Shipment Items w/ dynamic data
Data type: VTTPVB_TABOptional: No
Call by Reference: Yes
IT_XVTTP - Table type for VTTPVB: Shipment Items w/ dynamic data
Data type: VTTPVB_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BORTE_DATA_FROM_BORTE 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_i_fcode | TYPE T185F-FCODE, " | |||
| lv_is_yvttk | TYPE VTTKVB, " | |||
| lv_is_xvttk | TYPE VTTKVB, " | |||
| lv_it_yvtts | TYPE VTTSVB_TAB, " | |||
| lv_it_xvtts | TYPE VTTSVB_TAB, " | |||
| lv_it_yvttp | TYPE VTTPVB_TAB, " | |||
| lv_it_xvttp | TYPE VTTPVB_TAB. " |
|   CALL FUNCTION 'BORTE_DATA_FROM_BORTE' "NOTRANSL: Daten zum Hauptprogramm |
| IMPORTING | ||
| I_FCODE | = lv_i_fcode | |
| IS_YVTTK | = lv_is_yvttk | |
| IS_XVTTK | = lv_is_xvttk | |
| IT_YVTTS | = lv_it_yvtts | |
| IT_XVTTS | = lv_it_xvtts | |
| IT_YVTTP | = lv_it_yvttp | |
| IT_XVTTP | = lv_it_xvttp | |
| . " BORTE_DATA_FROM_BORTE | ||
ABAP code using 7.40 inline data declarations to call FM BORTE_DATA_FROM_BORTE
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 FCODE FROM T185F INTO @DATA(ld_i_fcode). | ||||
Search for further information about these or an SAP related objects