ADD_NODE_APPLICATION_LOG SAP Method of class IF_HRPAYAT_PCALZ_LOG









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

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


Parameters of Method ADD_NODE_APPLICATION_LOG

.

NameTypeData TypeDescriptionDefault Value
IM_BELONGS_TO_ROOTImportingTYPE
BOOLE_D
Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
IM_EXPAND_NODEImportingTYPE
BOOLE_D
Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
IM_ICONImportingTYPE
ICON_D
Text Field Icon (Alternative Display, Alias)
IM_IS_LOGImportingTYPE
BOOLE_D
Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
IM_NEW_PAGEImportingTYPE
BOOLE_D
Output New Page
IM_NODEImportingTYPE
IF_HRPAYAT_SHM_MESSAGE_HANDLER=>TY_NODE
IM_NODE_KEYImportingTYPE
CHAR4
HR Application Log
IM_NODE_TEXTImportingTYPE
CHAR25
User field for cluster PC (national)
IM_PARENT_NODEImportingTYPE
CHAR4
HR Application Log
IM_QUICKINFOImportingTYPE
GUI_INFO
Menu Painter: Info Text (4.0)



Exceptions of Method ADD_NODE_APPLICATION_LOG

This method does not have any exceptions

Example 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: lo_class TYPE REF TO IF_HRPAYAT_PCALZ_LOG.
DATA: lv_IM_BELONGS_TO_ROOT TYPE BOOLE_D,
lv_IM_EXPAND_NODE TYPE BOOLE_D,
lv_IM_ICON TYPE ICON_D,
lv_IM_IS_LOG TYPE BOOLE_D,
lv_IM_NEW_PAGE TYPE BOOLE_D,
lv_IM_NODE TYPE IF_HRPAYAT_SHM_MESSAGE_HANDLER=>TY_NODE,
lv_IM_NODE_KEY TYPE CHAR4,
lv_IM_NODE_TEXT TYPE CHAR25,
lv_IM_PARENT_NODE TYPE CHAR4,
lv_IM_QUICKINFO TYPE GUI_INFO,
lv_other TYPE c.

CALL METHOD lo_class=>ADD_NODE_APPLICATION_LOG(
EXPORTING
IM_BELONGS_TO_ROOT = lv_IM_BELONGS_TO_ROOT
IM_EXPAND_NODE = lv_IM_EXPAND_NODE
IM_ICON = lv_IM_ICON
IM_IS_LOG = lv_IM_IS_LOG
IM_NEW_PAGE = lv_IM_NEW_PAGE
IM_NODE = lv_IM_NODE
IM_NODE_KEY = lv_IM_NODE_KEY
IM_NODE_TEXT = lv_IM_NODE_TEXT
IM_PARENT_NODE = lv_IM_PARENT_NODE
IM_QUICKINFO = lv_IM_QUICKINFO ).

Links to Related Class(s)

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