SAP TB_DATAFEED_RATE_RESET_REALTIM Function Module for NOTRANSL: Datafeed: Liefert eine Tabelle aller gewünschten Realtime-Kurse
TB_DATAFEED_RATE_RESET_REALTIM is a standard tb datafeed rate reset realtim 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: Datafeed: Liefert eine Tabelle aller gewünschten Realtime-Kurse 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 tb datafeed rate reset realtim FM, simply by entering the name TB_DATAFEED_RATE_RESET_REALTIM into the relevant SAP transaction such as SE37 or SE38.
Function Group: TBDF
Program Name: SAPLTBDF
Main Program: SAPLTBDF
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function TB_DATAFEED_RATE_RESET_REALTIM 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 'TB_DATAFEED_RATE_RESET_REALTIM'"NOTRANSL: Datafeed: Liefert eine Tabelle aller gewünschten Realtime-Kurse.
EXPORTING
FEEDNAME = "Market Data: Data Provider
TABLES
REQUEST = "Datafeed: Structure for Querying Values
* ERROR = "Message collector
* ERROR_DOKU = "SAPscript: Text Lines
EXCEPTIONS
NO_AUTHORITY = 1 EMPTY_TABLE = 2 INVALID_FEEDNAME = 3 INTERNAL_ERROR = 4
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_SAPLTBDF_001 Market Data: Interface for Reading Saved Rates
EXIT_SAPLTBDF_002 Market Data: Rate/Price Interface to Market Data Buffer VTB_MARKET
IMPORTING Parameters details for TB_DATAFEED_RATE_RESET_REALTIM
FEEDNAME - Market Data: Data Provider
Data type: VTBDFF-RFEEDNAMEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for TB_DATAFEED_RATE_RESET_REALTIM
REQUEST - Datafeed: Structure for Querying Values
Data type: VTB_DFREQOptional: No
Call by Reference: No ( called with pass by value option)
ERROR - Message collector
Data type: MESGOptional: Yes
Call by Reference: No ( called with pass by value option)
ERROR_DOKU - SAPscript: Text Lines
Data type: TLINEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_AUTHORITY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EMPTY_TABLE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_FEEDNAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TB_DATAFEED_RATE_RESET_REALTIM 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_request | TYPE STANDARD TABLE OF VTB_DFREQ, " | |||
| lv_feedname | TYPE VTBDFF-RFEEDNAME, " | |||
| lv_no_authority | TYPE VTBDFF, " | |||
| lt_error | TYPE STANDARD TABLE OF MESG, " | |||
| lv_empty_table | TYPE MESG, " | |||
| lt_error_doku | TYPE STANDARD TABLE OF TLINE, " | |||
| lv_invalid_feedname | TYPE TLINE, " | |||
| lv_internal_error | TYPE TLINE. " |
|   CALL FUNCTION 'TB_DATAFEED_RATE_RESET_REALTIM' "NOTRANSL: Datafeed: Liefert eine Tabelle aller gewünschten Realtime-Kurse |
| EXPORTING | ||
| FEEDNAME | = lv_feedname | |
| TABLES | ||
| REQUEST | = lt_request | |
| ERROR | = lt_error | |
| ERROR_DOKU | = lt_error_doku | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| EMPTY_TABLE = 2 | ||
| INVALID_FEEDNAME = 3 | ||
| INTERNAL_ERROR = 4 | ||
| . " TB_DATAFEED_RATE_RESET_REALTIM | ||
ABAP code using 7.40 inline data declarations to call FM TB_DATAFEED_RATE_RESET_REALTIM
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 RFEEDNAME FROM VTBDFF INTO @DATA(ld_feedname). | ||||
Search for further information about these or an SAP related objects