RELOAD_LOG SAP Method Reload application log
Below is documentation, parameters and attributes of ABAP Method RELOAD_LOG within SAP class /GSINS/CL_BR_APPLOG. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /GSINS/CL_BR_APPLOG into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method RELOAD_LOG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method RELOAD_LOG
.| Name | Type | Data Type | Description | Default Value |
| IV_LOGHANDLER | Importing | TYPE BALLOGHNDL | Application Log: Log Handle | |
| IV_LOGNUMBER | Importing | TYPE BALOGNR | Application log: log number | |
| IV_SAVE_TO_DB | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| RO_LOG | Returning | TYPE REF TO /GSINS/CL_BR_APPLOG | Application log |
Exceptions of Method RELOAD_LOG
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_IV_LOGHANDLER TYPE BALLOGHNDL,
lv_IV_LOGNUMBER TYPE BALOGNR,
lv_IV_SAVE_TO_DB TYPE BOOLE_D,
lv_RO_LOG TYPE /GSINS/CL_BR_APPLOG,
lv_other TYPE c.
CALL METHOD /GSINS/CL_BR_APPLOG=>RELOAD_LOG(
EXPORTING
IV_LOGHANDLER = lv_IV_LOGHANDLER
IV_LOGNUMBER = lv_IV_LOGNUMBER
IV_SAVE_TO_DB = lv_IV_SAVE_TO_DB
RECEIVING
RO_LOG = lv_RO_LOG )
"Alternate coding for Method Call with returning parameter
lv_RO_LOG = /GSINS/CL_BR_APPLOG=>RELOAD_LOG(
EXPORTING
IV_LOGHANDLER = lv_IV_LOGHANDLER
IV_LOGNUMBER = lv_IV_LOGNUMBER
IV_SAVE_TO_DB = lv_IV_SAVE_TO_DB ).
Links to Related Class(s)
/GSINS/C...Full list of available SAP object classes
Search for further information about these or an SAP related objects