GET_HISTORY_VERSION SAP Method of class IF_RSO_RES_TLOGO_HISTORY
Below is documentation, parameters and attributes of ABAP Method GET_HISTORY_VERSION within SAP class IF_RSO_RES_TLOGO_HISTORY. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_RSO_RES_TLOGO_HISTORY into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_HISTORY_VERSION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_HISTORY_VERSION
.| Name | Type | Data Type | Description | Default Value |
| I_OBJNM | Importing | TYPE STRING | ||
| I_R_DATA_DESCR | Importing | TYPE REF TO CL_ABAP_DATADESCR | Runtime Type Services | |
| I_TLOGO | Importing | TYPE STRING | ||
| I_VERSION_ID | Importing | TYPE STRING | ||
| I_IGNORE_WARNINGS | Importing | TYPE RS_BOOL | Boolean | |
| E_R_DATA | Exporting | TYPE REF TO DATA | ||
| E_XML | Exporting | TYPE XSTRING |
Exceptions of Method GET_HISTORY_VERSION
CX_ADT_REST - Shared exceptions for resource/service frameworkExample ABAP coding
DATA: lo_class TYPE REF TO IF_RSO_RES_TLOGO_HISTORY.
DATA: lv_E_R_DATA TYPE DATA,
lv_E_XML TYPE XSTRING,
lv_I_OBJNM TYPE STRING,
lv_I_R_DATA_DESCR TYPE CL_ABAP_DATADESCR,
lv_I_TLOGO TYPE STRING,
lv_I_VERSION_ID TYPE STRING,
lv_I_IGNORE_WARNINGS TYPE RS_BOOL,
lv_other TYPE c.
CALL METHOD lo_class=>GET_HISTORY_VERSION(
EXPORTING
I_OBJNM = lv_I_OBJNM
I_R_DATA_DESCR = lv_I_R_DATA_DESCR
I_TLOGO = lv_I_TLOGO
I_VERSION_ID = lv_I_VERSION_ID
I_IGNORE_WARNINGS = lv_I_IGNORE_WARNINGS
IMPORTING
E_R_DATA = lv_E_R_DATA
E_XML = lv_E_XML ).
Links to Related Class(s)
IF_RSO_R...Full list of available SAP object classes
Search for further information about these or an SAP related objects