SAP TR_READ_LOG Function Module for Read Log









TR_READ_LOG is a standard tr read log SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Log 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 tr read log FM, simply by entering the name TR_READ_LOG into the relevant SAP transaction such as SE37 or SE38.

Function Group: SLOG
Program Name: SAPLSLOG
Main Program: SAPLSLOG
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TR_READ_LOG 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 'TR_READ_LOG'"Read Log
EXPORTING
* IV_LOG_TYPE = 'FILE' "
* IV_LOGNAME_FILE = "Name of log (file)
* IV_LOGNAME_DB = "Name of log (database)
* IV_LOGNAME_MEMORY = "Name of log (memory)
* IV_TIMESTAMP = '00000000000000' "Time stamp of step (only for search)
* IV_CLIENT = ' ' "Client
* IV_LANGUAGE = SYST-LANGU "Display language

TABLES
ET_LINES = "

EXCEPTIONS
INVALID_INPUT = 1 ACCESS_ERROR = 2
.



IMPORTING Parameters details for TR_READ_LOG

IV_LOG_TYPE -

Data type: TRLOG_TYPE
Default: 'FILE'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_LOGNAME_FILE - Name of log (file)

Data type: TSTRF01-FILE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_LOGNAME_DB - Name of log (database)

Data type: DDPRH-PROTNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_LOGNAME_MEMORY - Name of log (memory)

Data type: TSTRF01-FILENAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_TIMESTAMP - Time stamp of step (only for search)

Data type: TSTAMP
Default: '00000000000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_CLIENT - Client

Data type: T000-MANDT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_LANGUAGE - Display language

Data type: SY-LANGU
Default: SYST-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for TR_READ_LOG

ET_LINES -

Data type: TRLOG
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INVALID_INPUT - Invalid entry

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ACCESS_ERROR - Log could not be read

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for TR_READ_LOG 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_et_lines  TYPE STANDARD TABLE OF TRLOG, "   
lv_iv_log_type  TYPE TRLOG_TYPE, "   'FILE'
lv_invalid_input  TYPE TRLOG_TYPE, "   
lv_access_error  TYPE TRLOG_TYPE, "   
lv_iv_logname_file  TYPE TSTRF01-FILE, "   
lv_iv_logname_db  TYPE DDPRH-PROTNAME, "   
lv_iv_logname_memory  TYPE TSTRF01-FILENAME, "   
lv_iv_timestamp  TYPE TSTAMP, "   '00000000000000'
lv_iv_client  TYPE T000-MANDT, "   ' '
lv_iv_language  TYPE SY-LANGU. "   SYST-LANGU

  CALL FUNCTION 'TR_READ_LOG'  "Read Log
    EXPORTING
         IV_LOG_TYPE = lv_iv_log_type
         IV_LOGNAME_FILE = lv_iv_logname_file
         IV_LOGNAME_DB = lv_iv_logname_db
         IV_LOGNAME_MEMORY = lv_iv_logname_memory
         IV_TIMESTAMP = lv_iv_timestamp
         IV_CLIENT = lv_iv_client
         IV_LANGUAGE = lv_iv_language
    TABLES
         ET_LINES = lt_et_lines
    EXCEPTIONS
        INVALID_INPUT = 1
        ACCESS_ERROR = 2
. " TR_READ_LOG




ABAP code using 7.40 inline data declarations to call FM TR_READ_LOG

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.

 
DATA(ld_iv_log_type) = 'FILE'.
 
 
 
"SELECT single FILE FROM TSTRF01 INTO @DATA(ld_iv_logname_file).
 
"SELECT single PROTNAME FROM DDPRH INTO @DATA(ld_iv_logname_db).
 
"SELECT single FILENAME FROM TSTRF01 INTO @DATA(ld_iv_logname_memory).
 
DATA(ld_iv_timestamp) = '00000000000000'.
 
"SELECT single MANDT FROM T000 INTO @DATA(ld_iv_client).
DATA(ld_iv_client) = ' '.
 
"SELECT single LANGU FROM SY INTO @DATA(ld_iv_language).
DATA(ld_iv_language) = SYST-LANGU.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!