SAP IST_FILE_TELNR_TRANSFER Function Module for
IST_FILE_TELNR_TRANSFER is a standard ist file telnr transfer SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ist file telnr transfer FM, simply by entering the name IST_FILE_TELNR_TRANSFER into the relevant SAP transaction such as SE37 or SE38.
Function Group: IST_DUNEVENT
Program Name: SAPLIST_DUNEVENT
Main Program: SAPLIST_DUNEVENT
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IST_FILE_TELNR_TRANSFER 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 'IST_FILE_TELNR_TRANSFER'".
EXPORTING
I_IST_FILE_TELNR = "
I_FILE = "
IMPORTING
E_SUBRC = "
E_SUBRC_ACTIVE = "
TABLES
* T_FIMSG = "
EXCEPTIONS
PROCESSING_ERROR = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLIST_DUNEVENT_001 IS-T-CA: Transfer (Dis)Connection File for Services Via User Exit
IMPORTING Parameters details for IST_FILE_TELNR_TRANSFER
I_IST_FILE_TELNR -
Data type: IST_FILE_TELNROptional: No
Call by Reference: No ( called with pass by value option)
I_FILE -
Data type: IST30_FILEOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for IST_FILE_TELNR_TRANSFER
E_SUBRC -
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
E_SUBRC_ACTIVE -
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
TABLES Parameters details for IST_FILE_TELNR_TRANSFER
T_FIMSG -
Data type: FIMSGOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PROCESSING_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for IST_FILE_TELNR_TRANSFER 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_e_subrc | TYPE SY-SUBRC, " | |||
| lt_t_fimsg | TYPE STANDARD TABLE OF FIMSG, " | |||
| lv_i_ist_file_telnr | TYPE IST_FILE_TELNR, " | |||
| lv_processing_error | TYPE IST_FILE_TELNR, " | |||
| lv_i_file | TYPE IST30_FILE, " | |||
| lv_e_subrc_active | TYPE SY-SUBRC. " |
|   CALL FUNCTION 'IST_FILE_TELNR_TRANSFER' " |
| EXPORTING | ||
| I_IST_FILE_TELNR | = lv_i_ist_file_telnr | |
| I_FILE | = lv_i_file | |
| IMPORTING | ||
| E_SUBRC | = lv_e_subrc | |
| E_SUBRC_ACTIVE | = lv_e_subrc_active | |
| TABLES | ||
| T_FIMSG | = lt_t_fimsg | |
| EXCEPTIONS | ||
| PROCESSING_ERROR = 1 | ||
| . " IST_FILE_TELNR_TRANSFER | ||
ABAP code using 7.40 inline data declarations to call FM IST_FILE_TELNR_TRANSFER
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 SUBRC FROM SY INTO @DATA(ld_e_subrc). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_subrc_active). | ||||
Search for further information about these or an SAP related objects