GET_PROPERTIES SAP Method Restore Properties for Certain Versions









Below is documentation, parameters and attributes of ABAP Method GET_PROPERTIES within SAP class IF_RSO_REPOSITORY_OBJECT. 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_REPOSITORY_OBJECT 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_PROPERTIES can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_PROPERTIES

.

NameTypeData TypeDescriptionDefault Value
I_BYPASSING_BUFFERImportingTYPE
RS_BOOL
Do Not Use Buffer When Reading
I_NO_MESSAGEImportingTYPE
RS_BOOL
Test without Messages
I_OBJLOGSYSImportingTYPE
LOGSYS
Logical System
I_OBJVERSImportingTYPE
RS_OBJVERS
Object Versions To Be Found
E_BCT_DEVCLASSExportingTYPE
DEVCLASS
Komponente (des BW Business Content)
E_CONTRELExportingTYPE
RS_CONTREL
Content Release
E_CONTTIMESTMPExportingTYPE
RSCONTTIMESTMP
Content Time Stamp
E_ICONExportingTYPE
ICON_D
Icon
E_IOBJTPExportingTYPE
RSD_IOBJTP
InfoObject Subtype
E_LOGSYSExportingTYPE
RSSLOGSYS
Source System (with some objects)
E_OBJSTATExportingTYPE
RS_OBJSTAT
Object Status
E_OWNERExportingTYPE
RS_OWNER
Owner
E_QUERY_ELEMENT_TYPEExportingTYPE
RZD1_DEFTP
Query Element Subtype
E_S_OWNED_BYExportingTYPE
RSO_S_TLOGO_OWNED_BY
Parent TLOGO Object (which current object belongs to)
E_S_TLOGOPROPExportingTYPE
RSTLOGOPROP
General Characteristics TLOGO Typ
E_TIMESTMPExportingTYPE
RSTIMESTMP
Time Last Change was Made
E_TSTPNMExportingTYPE
RSTSTPNM
Last Changed by
E_TXTLGExportingTYPE
RSTXTLG
Description, Long
E_TXTSHExportingTYPE
RSTXTSH
Description, Short



Exceptions of Method GET_PROPERTIES

E_BCT_DEVCLASSExportingTYPE
DEVCLASSKomponente (des BW Business Content)E_CONTRELExportingTYPE
RS_CONTRELContent ReleaseE_CONTTIMESTMPExportingTYPE
RSCONTTIMESTMPContent Time StampE_ICONExportingTYPE
ICON_DIconE_IOBJTPExportingTYPE
RSD_IOBJTPInfoObject SubtypeE_LOGSYSExportingTYPE
RSSLOGSYSSource System (with some objects)E_OBJSTATExportingTYPE
RS_OBJSTATObject StatusE_OWNERExportingTYPE
RS_OWNEROwnerE_QUERY_ELEMENT_TYPEExportingTYPE
RZD1_DEFTPQuery Element SubtypeE_S_OWNED_BYExportingTYPE
RSO_S_TLOGO_OWNED_BYParent TLOGO Object (which current object belongs to)E_S_TLOGOPROPExportingTYPE
RSTLOGOPROPGeneral Characteristics TLOGO TypE_TIMESTMPExportingTYPE
RSTIMESTMPTime Last Change was MadeE_TSTPNMExportingTYPE
RSTSTPNMLast Changed byE_TXTLGExportingTYPE
RSTXTLGDescription, LongE_TXTSHExportingTYPE
RSTXTSHDescription, ShortVERSION_NOT_ON_DB - Object Does Not Exist in the Object Version Searched in DB

Example ABAP coding


DATA: lo_class TYPE REF TO IF_RSO_REPOSITORY_OBJECT.
DATA: lv_E_BCT_DEVCLASS TYPE DEVCLASS,
lv_E_CONTREL TYPE RS_CONTREL,
lv_E_CONTTIMESTMP TYPE RSCONTTIMESTMP,
lv_E_ICON TYPE ICON_D,
lv_E_IOBJTP TYPE RSD_IOBJTP,
lv_E_LOGSYS TYPE RSSLOGSYS,
lv_E_OBJSTAT TYPE RS_OBJSTAT,
lv_E_OWNER TYPE RS_OWNER,
lv_E_QUERY_ELEMENT_TYPE TYPE RZD1_DEFTP,
lv_E_S_OWNED_BY TYPE RSO_S_TLOGO_OWNED_BY,
lv_E_S_TLOGOPROP TYPE RSTLOGOPROP,
lv_E_TIMESTMP TYPE RSTIMESTMP,
lv_E_TSTPNM TYPE RSTSTPNM,
lv_E_TXTLG TYPE RSTXTLG,
lv_E_TXTSH TYPE RSTXTSH,
lv_I_BYPASSING_BUFFER TYPE RS_BOOL,
lv_I_NO_MESSAGE TYPE RS_BOOL,
lv_I_OBJLOGSYS TYPE LOGSYS,
lv_I_OBJVERS TYPE RS_OBJVERS,
lv_other TYPE c.

CALL METHOD lo_class=>GET_PROPERTIES(
EXPORTING
I_BYPASSING_BUFFER = lv_I_BYPASSING_BUFFER
I_NO_MESSAGE = lv_I_NO_MESSAGE
I_OBJLOGSYS = lv_I_OBJLOGSYS
I_OBJVERS = lv_I_OBJVERS
IMPORTING
E_BCT_DEVCLASS = lv_E_BCT_DEVCLASS
E_CONTREL = lv_E_CONTREL
E_CONTTIMESTMP = lv_E_CONTTIMESTMP
E_ICON = lv_E_ICON
E_IOBJTP = lv_E_IOBJTP
E_LOGSYS = lv_E_LOGSYS
E_OBJSTAT = lv_E_OBJSTAT
E_OWNER = lv_E_OWNER
E_QUERY_ELEMENT_TYPE = lv_E_QUERY_ELEMENT_TYPE
E_S_OWNED_BY = lv_E_S_OWNED_BY
E_S_TLOGOPROP = lv_E_S_TLOGOPROP
E_TIMESTMP = lv_E_TIMESTMP
E_TSTPNM = lv_E_TSTPNM
E_TXTLG = lv_E_TXTLG
E_TXTSH = lv_E_TXTSH ).

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



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!