LOG__METHOD SAP Method of class CL_ICF_SYSTEM_LOGIN









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

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


Parameters of Method LOG__METHOD

.

NameTypeData TypeDescriptionDefault Value
AImportingTYPE
CSEQUENCE
Replace &A& (Type String)
BImportingTYPE
CSEQUENCE
Replace &B& (Type String)
CImportingTYPE
CSEQUENCE
Replace &C& (Type String)
DATE1ImportingTYPE
DATS
Replace &DATE1& (type DATS)
DATE2ImportingTYPE
DATS
Replace &DATE2& (type DATS)
DATE3ImportingTYPE
DATS
Replace &DATE3& (type DATS)
IImportingTYPE
I
Replace &I& (Type I)
JImportingTYPE
I
Replace &J& (Type I)
KImportingTYPE
I
Replace &K& (Type I)
MSGImportingTYPE
CSEQUENCE
Error Message
NAMEImportingTYPE
CSEQUENCE
TImportingTYPE
ANY TABLE
Replace &T& (Any Table Type)
TIME1ImportingTYPE
TIMS
Replace &TIME1& (type TIMS)
TIME2ImportingTYPE
TIMS
Replace &TIME2& (type TIMS)
TIME3ImportingTYPE
TIMS
Replace &TIME3& (type TIMS)



Exceptions of Method LOG__METHOD

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 CL_ICF_SYSTEM_LOGIN.
DATA: lv_A TYPE CSEQUENCE,
lv_B TYPE CSEQUENCE,
lv_C TYPE CSEQUENCE,
lv_DATE1 TYPE DATS,
lv_DATE2 TYPE DATS,
lv_DATE3 TYPE DATS,
lv_I TYPE I,
lv_J TYPE I,
lv_K TYPE I,
lv_MSG TYPE CSEQUENCE,
lv_NAME TYPE CSEQUENCE,
lv_T TYPE ANY TABLE,
lv_TIME1 TYPE TIMS,
lv_TIME2 TYPE TIMS,
lv_TIME3 TYPE TIMS,
lv_other TYPE c.

CALL METHOD lo_class=>LOG__METHOD(
EXPORTING
A = lv_A
B = lv_B
C = lv_C
DATE1 = lv_DATE1
DATE2 = lv_DATE2
DATE3 = lv_DATE3
I = lv_I
J = lv_J
K = lv_K
MSG = lv_MSG
NAME = lv_NAME
T = lv_T
TIME1 = lv_TIME1
TIME2 = lv_TIME2
TIME3 = lv_TIME3 ).

Links to Related Class(s)

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