GET_OBJECT_INFO SAP Method Provide Information About Object Type









Below is documentation, parameters and attributes of ABAP Method GET_OBJECT_INFO within SAP class IF_HRASR00_DT_OBJECT_HANDLER. 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_HRASR00_DT_OBJECT_HANDLER 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 directly

The following technical details of method GET_OBJECT_INFO can also be found below:

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


Parameters of Method GET_OBJECT_INFO

.

NameTypeData TypeDescriptionDefault Value
HAS_SPECIFIC_VALUE_HELPExportingTYPE
BOOLE_D
Specific Input Help Exists
HAS_TOOL_FOR_ADAPT_MULTIExportingTYPE
BOOLE_D
Tool for Reconciling Multiple Objects Exists
OBJECT_DESCRIPTION_LENGTHExportingTYPE
I
Length of Object Description
OBJECT_NAME_LENGTHExportingTYPE
I
Length of object name



Exceptions of Method GET_OBJECT_INFO

This method does not have any exceptions

Example ABAP coding


DATA: lv_HAS_SPECIFIC_VALUE_HELP TYPE BOOLE_D,
lv_HAS_TOOL_FOR_ADAPT_MULTI TYPE BOOLE_D,
lv_OBJECT_DESCRIPTION_LENGTH TYPE I,
lv_OBJECT_NAME_LENGTH TYPE I,
lv_other TYPE c.

CALL METHOD IF_HRASR00_DT_OBJECT_HANDLER=>GET_OBJECT_INFO(
IMPORTING
HAS_SPECIFIC_VALUE_HELP = lv_HAS_SPECIFIC_VALUE_HELP
HAS_TOOL_FOR_ADAPT_MULTI = lv_HAS_TOOL_FOR_ADAPT_MULTI
OBJECT_DESCRIPTION_LENGTH = lv_OBJECT_DESCRIPTION_LENGTH
OBJECT_NAME_LENGTH = lv_OBJECT_NAME_LENGTH ).

Links to Related Class(s)

IF_HRASR...
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!